a=bytes([232,181,158]).decode('utf-8') print(a)
你需要先解码:str = str.decode("ISO-8859-2"),这样返回的就是unicode的str,然后再使用个utf8编码:str = str.encode("utf-8"),这样就是utf8的了。也就是str=str.decode("ISO-8859-2").encode("utf-8")如果解决了您的问题请采纳!如果未解决请继续追问!
UTF-8其实就是一个表,要显示出来 查表然后从字库中找到对应映射的矢量字体 转换为点阵/设备无关位图 ...