how to show unicode utf-8 in website?
example †ree Kingdoms
but in website show ?ree Kingdom
thank you for helps
Printable View
how to show unicode utf-8 in website?
example †ree Kingdoms
but in website show ?ree Kingdom
thank you for helps
Make sure it is encoded in UTF-8 Without Bom. Use notepad++
@jbeitz107 thanks for answered.. but i can't understand you mean about you word "Make sure it is encoded in UTF-8 Without Bom"
can you explain what the mean that sir?
thanks before
sorry for bad english
This will help you to understand encoding with Notepad++ but, use the settings I recommend.
https://www.youtube.com/watch?v=g7ASyHdCC28
@jbeitz107 i already tried sir but ranking page still not show unicode ascii
You can use
In html (before </head>):
orCode:<meta http-equiv="Content-Type" content="text/html; charset={-code-}" />
In htaccess:Code:<meta charset="{-code-}">
Change {-code-} to UTF-8 or ISO-8859-1Code:AddDefaultCharset {-code-}
In php:
orCode:utf8_encode();
According to need.Code:utf8_decode();