python3字符串编码

来源:互联网 发布:阿里云客服好做吗 编辑:程序博客网 时间:2024/06/05 05:37

以此记录:


Python 3.5.3 (v3.5.3:1880cb95a742, Jan 16 2017, 16:02:32) [MSC v.1900 64 bit (AMD64)] on win32
>>>'的'
'的'


>>>'的'.encode()
b'\xe7\x9a\x84'


>>>'ab'.encode()
b'ab'


>>>'的'.encode(encoding='gb2312')
b'\xb5\xc4'


>>>'ab'.encode(encoding='gb2312')
b'ab'


>>>'的'.encode('unicode-escape')
b'\\u7684'


>>>'\u7684'
'的'


>>>b'\u7684'
b'\\u7684'


>>>b'\u7684'.decode('unicode-escape')

'的'


>>>b'\u7684'.decode()
'\\u7684'


>>>b'\u7684'.decode(encoding='gb2312')
'\\u7684'


原创粉丝点击