Pages Don't Have Character Encoding Declared
Missing Charset Declaration
Is a technical issue often flagged during a site audit in Semrush. The issue means that a webpage does not declare the character encoding used to display text.
Character encoding tells browsers how to interpret the text on a page. When the charset declaration is missing, browsers may guess the encoding. That can lead to broken characters, unreadable symbols, or inconsistent page rendering.
Once the charset declaration is added to the page header, the issue is usually resolved immediately.
What is Missing Charset Declaration?
Missing charset declaration occurs when an HTML page does not specify the character encoding used for its content.
Character encoding determines how characters, letters, and symbols are represented in a webpage's code. Modern websites typically use UTF-8, which supports nearly all characters used across languages.
The declaration usually appears in the <head> section of the HTML document and looks like this:
<meta charset="UTF-8">
Without this line, browsers may try to detect the encoding automatically. That detection is not always accurate, which can result in corrupted text or display errors.
Most modern WordPress themes automatically include this declaration in the theme header.
Why does Missing Charset Declaration affect SEO?
Missing charset declaration can create rendering problems that affect how both browsers and search engines interpret a page.
Search engines such as Google rely on consistent HTML structure and readable content when crawling a website. If character encoding is incorrect, certain text elements may appear broken or unreadable.
Encoding problems can affect navigation labels, page content, or structured data. When those elements become distorted, search engines may have difficulty interpreting the page correctly.
The issue does not directly cause ranking loss, but incorrect encoding can harm usability and reduce clarity in the page content. Correct encoding ensures the page renders consistently across browsers and devices.
