我在Python中使用PHP / webservice,但它给我带来了麻烦:
我想要u'Syst\xe8me'
,我有u'Syst\xc3\xa8me'
。
我不知道如何从B到A。
PS:我已经尝试在encoding='ascii'
中设置xmlrpclib.Server
。
答案 0 :(得分:2)
Latin-1(又名ISO 8859-1)编码可用于将小于256的字符转换为字节。
>>> u'Syst\xc3\xa8me'.encode('latin-1').decode('utf-8')
u'Syst\xe8me'