示例代碼:
s = '我愛你祖國'
# 將中文轉換為Unicode編碼
s_unicode = s.encode()
print(s_unicode)
# 將Unicode編碼轉換為中文
s = s_unicode.decode()
print(s)
運行結果:
示例代碼2:
text = '我愛你祖國'
# 將中文轉換為Unicode編碼
text_unicode = text.encode('unicode-escape').decode()
print(text_unicode)
# 將Unicode編碼轉換為中文
# s = text_unicode.encode('utf-8').decode('unicode_escape')
s = text_unicode.encode().decode('unicode_escape')
print(s)
運行結果: