• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Unicode on web not show

Junior Spellweaver
Joined
Oct 28, 2012
Messages
109
Reaction score
3
how to show unicode utf-8 in website?

example †ree Kingdoms

but in website show ?ree Kingdom

thank you for helps
 
Junior Spellweaver
Joined
Oct 28, 2012
Messages
109
Reaction score
3
@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
 
Skilled Illusionist
Joined
Mar 31, 2011
Messages
382
Reaction score
48
You can use

In html (before </head>):
Code:
<meta http-equiv="Content-Type" content="text/html; charset={-code-}" />

or

Code:
<meta charset="{-code-}">

In htaccess:
Code:
AddDefaultCharset {-code-}

Change {-code-} to UTF-8 or ISO-8859-1

In php:
Code:
utf8_encode();

or
Code:
utf8_decode();

According to need.