第1个回答 2016-05-02
这是16进制的Unicode码吧
\u8BF7\u5148\u9009\u62E9\u4E1A 这些转换成中文就是“请先选择业”
我用java转给你看吧,中文转成16进制的Unicode码
public static String conver(String str) {
String result = "";
for(int i = 0; i < str.length(); i++) {
String temp = "";
int strInt = str.charAt(i);
if(strInt > 127) {
temp += "\\u" + Integer.toHexString(strInt);
} else {
temp = String.valueOf(str.charAt(i));
}
result += temp;
}
return result;
}本回答被网友采纳