PILLAR 2, TOPICAL CONTENT · 2.1 Title & metaMediumInferred
Missing <meta charset>
Without a charset declaration, browsers guess the encoding, which can mangle characters and, in edge cases, cause security and parsing issues. A single UTF-8 charset meta near the top of the head fixes it.
What it is
No charset declaration.
Why it matters
Risk of mojibake/encoding issues affecting parsing.
How to fix it
Declare UTF-8 early in head.
How to find it on your site
- View source and check for a meta charset declaration early in the head.
- Confirm it is UTF-8 and appears within the first bytes of the head.
- Add it if missing.
- Re-check that special characters render correctly.
Cross-reference to ranking and citation factors
A missing charset can corrupt text rendering and parsing. Declaring UTF-8 is a baseline correctness measure.
Impact
Low-medium. Inferred.
Evidence
Correct encoding supports proper parsing. Google Search Central, In-Depth Guide to How Google Search Works