I want to show multiple languages on my page, for Spanish I am getting question marks with black backgrounds.
Result on html page:
contrase�
Original Spanish:
contraseña
charset is utf-8 and these Spanish words are stored in an array.
|
I want to show multiple languages on my page, for Spanish I am getting question marks with black backgrounds.
charset is utf-8 and these Spanish words are stored in an array. |
||||
|
|
|
Looks like an encoding issue. You will need to:
You can find more information on encoding in this w3 article |
|||||||
|
|
From the symptoms (“�” indicates byte-level data error: bytes that do not represent any character in the encoding being applied), it seems obvious that the data is not in fact UTF-8 encoded but probably ISO-8859-1 encoded. If this the case, utf8_encode is needed. |
|||
|
|
|
Try the following
|
|||
|
|
|
ASCII Codes are better in these cases ,Otherwise it will not properly display in all browsers |
|||
|
You could replace the special letters with these So in html code it would look like this:
and on html page: Contrasña |
|||
|
|