如何将 unicode 十六进制“0x20000”的字符串表示形式转换为到 Java 中的 int 代码点 0x20000

发布于 2024-11-18 21:32:26 字数 45 浏览 3 评论 0原文

我有一个 unicode 十六进制值的字符串表示形式的列表,例如“0x20000”(

I have a list of String representations of unicode hex values such as "0x20000" (????) and "0x00F8" (ø) that I need to get the int code point of so that I can use functions such as:
char[] chars = Character.toChars(0x20000);

This should cover the BMP as well as supplementary characters. I cannot find any way to do it so would be glad of some help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2024-11-25 21:32:26

您可以创建自己的 NumberFormat 实现,但比这更容易,您可以执行以下操作:

String hexString = "0x20000";
int hexInt = Integer.parseInt(hexString.substring(2), 16);
String stringRepresentation = new String(Character.toChars(hexInt));
System.out.println(stringRepresentation); //prints "

You can create your own NumberFormat implementation, but easier than that you can do something like this:

String hexString = "0x20000";
int hexInt = Integer.parseInt(hexString.substring(2), 16);
String stringRepresentation = new String(Character.toChars(hexInt));
System.out.println(stringRepresentation);   //prints "????"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文