public class CharT {
public static void main(String[] args) {//toChars(int codePoint)
String str = "啊";//啊 字的unicode
int codePoint = Integer.parseInt("554A",16);
char[] chs = Character.toChars(codePoint);
System.out.println(chs[0]);
}
}
应该是你要的答案吧...
char c2='\u554A';
System.out.printf("%c",c2);
你搜搜,Java里面可以转码。