如何使用Python将unicode字符串中的重音字符转换为其unicode字符代码?
只是想知道如何将像 u'é'
这样的 unicode 字符串转换为其 unicode 字符代码 u'\xe9'
?
Just wonder how to convert a unicode string like u'é'
to its unicode character code u'\xe9'
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Python 的 repr() 函数:
You can use Python's repr() function:
ord
将为您提供数值,但您必须将其转换为十六进制:ord
will give you the numeric value, but you'll have to convert it into hex:u'é' 和 u'\xe9' 完全相同,只是不同的表示形式:
u'é' and u'\xe9' are exactly the same, they are just different representations: