如何将 python 字符串转换为 ucs2 十六进制?
我一直在寻找这个,但找不到,虽然它看起来很简单。我需要在 url 中发送 ucs2 十六进制字符串,但我不知道如何将 python 字符串转换为 ucs2 十六进制。有什么想法吗?
I've been searching for this one and couldn't find it, although it seems simple. I need to send in a ucs2 hex string in the url, and I don't know how to convert a python string to be ucs2 hex. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(请注意,开头有 BOM。如果字节序固定,请使用编码
'utf_16_be'
或'utf_16_le'
。)如果需要十六进制数字,请使用
binascii.hexlify
。(Note that there's a BOM in the beginning. Use the encoding
'utf_16_be'
or'utf_16_le'
if the endian is fixed.)If you need hex digits, use
binascii.hexlify
.