「0x6d4b」など、char の 16 進値を表す文字列があります。それが表す文字をcharとして取得するにはどうすればよいですか?
String c = "0x6d4b";
char m = ???
// Drop "0x" in order to parse
String c = "6d4b";
// Parse hexadecimal integer
int i = Integer.parseInt( c, 16 );
// Note that this method returns char[]
char[] cs = Character.toChars( i );
// Prints 测
System.out.println( cs );
String s = "6d4b";
int i = Integer.parseInt( s, 16 ); // to convert hex to integer
char ca= (char) i;
System.out.println(ca);
System.out.println((char)Integer.parseInt("6d4b",16));
これを試して、
String s ="0x6d4b" ;
char[] c = s.toCharArray();
for (char cc : c){
System.out.print(cc);
}