Charset declaration
Checks if the charset (UTF-8) is correctly declared.
¿Por qué importa esto?
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.
¿Cómo se soluciona?
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.
Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.
Preguntas frecuentes
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.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
<head><meta charset="UTF-8"><title>Page</title></head>