Technisch

Charset declaration

Checks if the charset (UTF-8) is correctly declared.

Warum ist das wichtig?

Without a charset declaration, browsers can misinterpret characters, leading to "mojibake" (garbled characters). This is especially a problem with special characters and non-Latin scripts.

Wie beheben Sie es?

Add <meta charset="UTF-8"> as the first element in <head>, before the title tag. Also make sure your server sends Content-Type: text/html; charset=utf-8 in response headers.

Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.

Häufige Fragen

Checks if the charset (UTF-8) is correctly declared.

Without a charset declaration, browsers can misinterpret characters, leading to "mojibake" (garbled characters). This is especially a problem with special characters and non-Latin scripts.

Add <meta charset="UTF-8"> as the first element in <head>, before the title tag. Also make sure your server sends Content-Type: text/html; charset=utf-8 in response headers.

Beispiel

Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.

<head><meta charset="UTF-8"><title>Page</title></head>
Kostenlos starten