Skip to main content
Checks for proper character encoding declaration
Rule IDcore/charset
CategoryCore SEO
ScopePer-page
Severitywarning
Weight5/10

Solution

Add <meta charset="UTF-8"> as the first element in your <head> section. This tells browsers how to interpret the text on your page. UTF-8 is the standard encoding that supports all languages and special characters. Placing it first ensures browsers know the encoding before parsing any other content.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["core/charset"]

Disable all Core SEO rules

squirrel.toml
[rules]
disable = ["core/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["core/charset"]
disable = ["*"]