中文转unicode

Posted it-yong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中文转unicode相关的知识,希望对你有一定的参考价值。

String str = "中文转unicode";
char[] utfBytes = str.toCharArray();
String unicodeBytes = "";
for (int i = 0; i < utfBytes.length; i++)
String hexB = Integer.toHexString(utfBytes[i]);
if (hexB.length() <= 2)
hexB = "00" + hexB;

unicodeBytes = unicodeBytes + "\\u" + hexB;

System.out.println(unicodeBytes);

以上是关于中文转unicode的主要内容,如果未能解决你的问题,请参考以下文章

CSS字体(转载)

关于字符编码

Unicode

font-family常见中文字体对应的英文名称

python——字符编码

python——字符编码