Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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.
 
Back
Top