为了账号安全,请及时绑定邮箱和手机立即绑定

如何从 ISO-8859-1 格式转换为 UTF-8,然后转换为十六进制格式字符串 python

如何从 ISO-8859-1 格式转换为 UTF-8,然后转换为十六进制格式字符串 python

四季花海 2021-07-01 21:22:01
如何将 UTF-8 格式字符 '戗' 转换为十六进制值并将其存储为字符串“0xe6 0x88 0xa7”。with open(fromFilename,  encoding = "ISO-8859-1") as f:    while True:        c = f.read(1)        if not c:            print ("End of file")            break        print ("Read a character: %c", c)        newC = repr(c.encode('utf-8'))        print ("Read a decode character: %c", newC)        newString = newString + newC这是我的代码。请让我知道出了什么问题。
查看完整描述

1 回答

?
千巷猫影

TA贡献1829条经验 获得超7个赞

这在 Python 3.7 中对我有用


a = '戧'

encoded_bytes = a.encode(encoding='utf-8')

print(' '.join([hex(b) for b in encoded_bytes]))


>>> 0xe6 0x88 0xa7


查看完整回答
反对 回复 2021-07-06
  • 1 回答
  • 0 关注
  • 246 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信