标签:
\N{name} 给定名称的unicdoe字符
>>> import unicodedata >>> unicodedata.name(u‘a‘) ‘LATIN SMALL LETTER A‘
\uhhhh 给定16为十六进制的unicode字符
\Uhhhhhhhh 给定32位十六进制的unicode字符
\xhh 给定8位十六进制的unicode字符
字符串
原文地址:http://www.cnblogs.com/Citizen/p/4300568.html