将字符串转换为 unicode 字

发布于 2025-01-06 13:16:06 字数 247 浏览 0 评论 0原文

我有一个包含 unicode 单词 的字符串。例如:

String uniString = "that is an example \u05e9\u05dc\u05d5\u05dd the end.";

所以我向您提出的问题是,如何将此字符串转换为将 unicode 单词转换为单个字符的字符串。

注意:我是从服务器请求中获取它的。

谢谢一个头。

I have a string that contains unicode words. for example:

String uniString = "that is an example \u05e9\u05dc\u05d5\u05dd the end.";

So my question to you is, how can I convert this string into a string where the unicode words are converted into a singal character.

Note: I am getting it from a server request.

Thanks a head.

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

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

发布评论

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

评论(1

千紇 2025-01-13 13:16:06

native2ascii 是您正在寻找的:

http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/native2ascii.html

只需执行此操作即可将 Unicode 转义转换为您的源文件:

native2ascii -reverse -encoding UTF-8 src/Foo.java transformed/Foo.java

native2ascii is what you are looking for:

http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/native2ascii.html

Just do this to convert the Unicode escapes in your source file:

native2ascii -reverse -encoding UTF-8 src/Foo.java transformed/Foo.java
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文