我正在处理 unicode 数据字符,我想知道为什么有些在 unicodedata 中没有任何名称?这是一个示例代码,您可以在其中检查< unknown >
我以为 unicode 数据库中的每个字符都被命名了,顺便说一句,它们都是相同的类别,即[Cc] Other, Control
.
另一个问题:如何获得 unicode 码位值?是这样ord(unicodechar)
吗?
我也把文件放在这里(因为编码是一件很奇怪的事情),因为我认为我剪切的带有“不可见”字符的粘贴可能是有损的。
#!/bin/env python
# -*- coding: utf-8 -*-
#extracted and licensing from here:
"""
:author: Laurent Pointal <laurent.pointal@limsi.fr> <laurent.pointal@laposte.net>
:organization: CNRS - LIMSI
:copyright: CNRS - 2004-2009
:license: GNU-GPL Version 3 or greater
:version: $Id$
"""
# Chars alonemarks:
# !?¿;,*¤@°:%|¦/()[]{}<>«»´`¨&~=#±£¥$©®"
# must have spaces around them to make them tokens.
# Notes: they may be in pchar or fchar too, to identify punctuation after
# a fchar.
# \202 is a special ,
# \226 \227 are special -
alonemarks = u"!?¿;,\202*¤@°:%|¦/()[\]{}<>«»´`¨&~=#±\226"+\
u"\227£¥$©®\""
import unicodedata
for x in alonemarks:
unicodename = unicodedata.name(x, '<unknown>')
print "\t".join(map(unicode, (x, len(x), ord(x), unicodename, unicodedata.category(x))))
# unichr(int('fd9b', 16)).encode('utf-8')
# http://stackoverflow.com/questions/867866/convert-unicode-codepoint-to-utf8-hex-in-python