gpt4 book ai didi

python - 给定shift-jis字符代码获取utf-8字符代码?

转载 作者:行者123 更新时间:2023-11-30 23:45:36 24 4
gpt4 key购买 nike

在我的程序中,我得到了作为Python整数的shift-jis字符代码,我需要将其转换为相应的utf8字符代码(也应该是整数)。我怎样才能做到这一点?对于 ASCII,您可以使用有用的函数 ord()/chr(),它们允许您将整数转换为 ASCII 字符串,稍后您可以轻松地将其转换为 unicode。我找不到其他编码的类似内容。

使用Python 2。

编辑:最终代码。谢谢大家:

def shift_jis2unicode(charcode): # charcode is an integer
if charcode <= 0xFF:
string = chr(charcode)
else:
string = chr(charcode >> 8) + chr(charcode & 0xFF)

return ord(string.decode('shift-jis'))

print shift_jis2unicode(8140)

最佳答案

不存在“utf8字符代码(也应该是整数)”这样的东西。

Unicode 定义了“代码点”,即整数。 UTF-8 定义了如何将这些代码点转换为字节数组。

所以我认为您需要 Unicode 代码点。在这种情况下:

def shift_jis2unicode(charcode): # charcode is an integer
if charcode <= 0xFF:
shift_jis_string = chr(charcode)
else:
shift_jis_string = chr(charcode >> 8) + chr(charcode & 0xFF)

unicode_string = shift_jis_string.decode('shift-jis')

assert len(unicode_string) == 1
return ord(unicode_string)

print "U+%04X" % shift_jis2unicode(0x8144)
print "U+%04X" % shift_jis2unicode(0x51)

(另外:我不认为 8100 是有效的 shift-JIS 字符代码...)

关于python - 给定shift-jis字符代码获取utf-8字符代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9435799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com