j*****I 发帖数: 2626 | 1 【 以下文字转载自 Programming 讨论区 】
发信人: johnIII (我思故我灌), 信区: Programming
标 题: 请教汉字的utf-8 mapping
发信站: BBS 未名空间站 (Thu May 1 19:26:34 2008), 站内
发信人: johnIII (我思故我灌), 信区: XML
标 题: 请教汉字的utf-8 mapping
发信站: BBS 未名空间站 (Thu May 1 17:16:11 2008), 转信
找到一个,但是不怎么象
http://www.khngai.com/chinese/charmap/tbluni.php?page=0
觉得应该是3个byte 晕 |
b******y 发帖数: 9224 | 2 What do you want to do? Why you need a table to look at?
In the Unicode website, there is pdf files for all 汉字. I am guru on that ;
-)
So, what exactly you want to do then? |
j*****I 发帖数: 2626 | 3 就是自己先做个测试,弄几个汉字的uft code ...
能说一下是哪个网站么?
;
【在 b******y 的大作中提到】 : What do you want to do? Why you need a table to look at? : In the Unicode website, there is pdf files for all 汉字. I am guru on that ; : -) : So, what exactly you want to do then?
|
h*********o 发帖数: 62 | 4 jdk has a built-in app (forget the app name, google it) to convert many
languages to unicode back and forth. |
m******t 发帖数: 2416 | 5 native2ascii
【在 h*********o 的大作中提到】 : jdk has a built-in app (forget the app name, google it) to convert many : languages to unicode back and forth.
|
g******u 发帖数: 153 | 6 This one returns unicode not UTF-8.
【在 m******t 的大作中提到】 : native2ascii
|
g******u 发帖数: 153 | 7 See below from 2 of my presentation page
UTF (Unicode Transformation Format) |
j*****I 发帖数: 2626 | 8 酷.笑纳包子5个
【在 g******u 的大作中提到】 : See below from 2 of my presentation page : UTF (Unicode Transformation Format)
|
j*****I 发帖数: 2626 | 9 研究了一下,用firefox看中文email的时候,有的中文email比较"robust",不受encoding
设定影响,随便改fire browser的encoding 都不会乱码,有的就不行. 有什么trick么?
发现注册的yahoo group的发出的中文信件是robust的
【在 g******u 的大作中提到】 : See below from 2 of my presentation page : UTF (Unicode Transformation Format)
|
o***g 发帖数: 2784 | 10 email里面没有encoding的设定么?
encoding
【在 j*****I 的大作中提到】 : 研究了一下,用firefox看中文email的时候,有的中文email比较"robust",不受encoding : 设定影响,随便改fire browser的encoding 都不会乱码,有的就不行. 有什么trick么? : 发现注册的yahoo group的发出的中文信件是robust的
|
j*****I 发帖数: 2626 | 11 我做了测试,自己给自己发中文email. 分别用不同的encoding.
发现读的时候,必须用相同的encoding才能读,否则就乱码
不知道那些email list用的什么trick解决这个问题的
【在 o***g 的大作中提到】 : email里面没有encoding的设定么? : : encoding
|
o***g 发帖数: 2784 | 12 我的意思是你要看email的源代码,里面是否有encoding的信息
【在 j*****I 的大作中提到】 : 我做了测试,自己给自己发中文email. 分别用不同的encoding. : 发现读的时候,必须用相同的encoding才能读,否则就乱码 : 不知道那些email list用的什么trick解决这个问题的
|
m******t 发帖数: 2416 | 13
You are right. I can't think of anything else coming as part of the jdk that
does that though.
【在 g******u 的大作中提到】 : This one returns unicode not UTF-8.
|
h*********o 发帖数: 62 | 14 if you want your app (web or desktop) to support i18n, native2ascii is a
good way to convert your characters into unicode, and then you can display
them correctly in the screen (for example in a jsp, after setting charset to
utf-8). |