Delphi 10、.NET,如何将十六进制 UTF-8 字符串转换为其 unicode 字符?
我正在尝试使我的 Web 应用程序与国际语言兼容,但我一直在尝试转换 Delphi .NET DLL 中的转义字符。
前端代码传递带有转义字符的 UTF-8 十六进制表示法,例如对于お,我传递 \uE3818A。在我的 DLL 中,我捕获了这一点并构造了以下字符串“$E3818A”。我需要将其转换回お并将其发送到我的数据库,我一直在尝试使用 Encoding.UTF8.GetBytes 和 Encoding.UTF8.GetString 但没有运气。
任何人都可以帮我解决这个问题吗?
谢谢。
I am trying to make my web app compatible with international languages and I am stuck with trying to convert escaped characters in my Delphi .NET DLL.
The front end code is passing the UTF-8 hex notation with an escape character e.g for お I pass \uE3818A. In my DLL I capture this and constract the following string '$E3818A'. I need to convert this back to お and send it to my database, I've been trying to use Encoding.UTF8.GetBytes and Encoding.UTF8.GetString but with no luck.
Anyone could help me figure this out?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用:
对每个字符存储到
byte[]
,然后调用Encoding.UTF8.GetString(byteStr)
call:
on every to characters and store into
byte[]
, then callEncoding.UTF8.GetString(byteStr)
将字符串转换为表示原始字节的字节数组(在本例中为 0xE3、0x81、0x8A),然后调用
Encoding.UTF8.GetString(bytes)
- 这应该没问题。Turn your string into a byte array representing the original bytes (in this case 0xE3, 0x81, 0x8A), and then call
Encoding.UTF8.GetString(bytes)
- that should be fine.