python 代码库之uni编码转化为unicode的字符串
2019-07-27 本文已影响4人
iCloudEnd
最近在研究ttf字库,遇到了如何将汉字编码转化为unicode字符串的问题。
问题描述
t='uni4F10'
如何转化成:
t='\u4F10'
如果你强制转换就会报错:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-1: truncated \uXXXX escape
解决方案
import json
t='uni4F10'
t=t.replace('uni','\\u')
json.loads(f'"{t}"')
Jietu20190727-073952@2x.jpg