Special character not displaying as expected

1 – Replace your

<meta charset="utf-8">

with

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

2 – Check if your HTML Editor’s encoding is in UTF8. Usually this option is found on the tabs on the top of the program, like in Notepad++.

3 – Check if your browser is compatible with your font, if you’re somehow importing a font. Or try and add a css to set your fonts to a default/generally accepted one like

body
{
    font-family: "Times New Roman", Times, serif;
}

Hope it helps 🙂

Leave a Comment