PDA

View Full Version : How to display Japanese characters in HTML


Masterslave
01-24-2006, 10:10 AM
Hello all,

I've a small problem, I want to display Japanese characters (numbers) but I can't get it fixed.
I had this code:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
</head>
<body>
1
2
..
..
etc
</body>
</html>
But this doesn't work, can anyone tell me how to fix it.
Thanks in advance.:thumbsup:

vinyl-junkie
01-24-2006, 02:22 PM
Here's another encoding for Japanese characters:

<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">

ronaldb66
01-24-2006, 02:40 PM
Sounds like you could do with A complete introduction to Japanese character encodings (http://www.cs.mcgill.ca/~aelias4/encodings.html) (because I can't tell you a thing about it! ;) )

Masterslave
01-27-2006, 11:48 AM
Thanks, that will do.:thumbsup: