: Why are non-english characters appearing incorrectly?
You may need to change the character encoding that is being used in the document. You can do so by following the instructions below:
- Login to your Website Toolbox account.
- Click the Custom HTML link.
- If there is a Head textbox visible, enter the code below into that textbox, otherwise insert it into the Header textbox.
Try this code:
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
Or this code:
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
If this does not solve the problem, that means the encoding type is not Western or Unicode, in which case you should determine the encoding type and insert it into the document using a META tag as described above.
Additional external resources:
|