Click to See Complete Forum and Search --> : display multiple language with char value on one page


html20009876
07-28-2009, 12:49 AM
My task is to say "welcome" to diferent language users on a html page by their own languages.
so the page needs to display multiple languages - just for "welcome".

for safety reason, I hope all language characters are recorded with char values. actually I can not input "true words" of all languages, but I have thier values.

i.e. Chinese "welcome" are 2 words with hex values of 226B and CE8F, and so on for Japanese, Korean, France language etc.

I tried following code for Chinese language

<p xml:lang="zh-Hans" lang="zh-Hans">
&#x226B; &#xCE8F;
</p>

but it is not working at all.

could you help me with code to display multiple languages with char values on a single htmp page?

Thanks