字串解碼:
有字串:
'\u4fee\u6539\u8282\u70b9\u72b6\u6001\u6210\u529f'
想轉換為6u6001u6210u529f"
可以透過以下
>>> a = '\u4fee\u6539\u8282\u70b9\u72b6\u6001\u6210\u529f'
>>> a.decode('unicode_escape')
>>> a.decode('unicode_escape')
>>> a.decode('unicode_escape')
>>> a.decode('unicode_escape')
>>> a.decode('unicode_escape')
210u529f'字串轉換為16進位:
>>> "hello".encode("hex")
'68656c6c6f'
對應的還可以
'hello'
可以檢查下手冊,看看哪些codec可用