我找不到合适的 API。我试过这个;
public static void main(String[] args) {
for (int i = 2309; i < 3000; i++) {
String hex = Integer.toHexString(i);
System.out.println(hex + " = " + (char) i);
}
}
此代码仅在 Eclipse IDE 中这样打印。
905 = ?
906 = ?
907 = ?
...
如何使用这些十进制和十六进制值来获取 Unicode 字符?