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

  1. View source and check for a meta charset declaration early in the head.
  2. Confirm it is UTF-8 and appears within the first bytes of the head.
  3. Add it if missing.
  4. 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