📜  python unicode 指向 utf8 字符串 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:44.906000             🧑  作者: Mango

代码示例1
#! /usr/bin/python3
import re

def makeNice(s):
    return re.subn('(#U[0-9a-f]{4})', lambda cp: chr(int(cp.groups()[0][2:],16)), s) [0]

a = '-#U2605-#U79c1-'
print(a, makeNice(a))