python 代码库之uni编码转化为unicode的字符串

作者: iCloudEnd | 来源:发表于2019-07-27 07:40 被阅读4次

最近在研究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

相关文章

网友评论

    本文标题:python 代码库之uni编码转化为unicode的字符串

    本文链接:https://www.haomeiwen.com/subject/tnhsrctx.html