On 6/21/05, Jeff Epler <[EMAIL PROTECTED]> wrote:
> If you want to work with unicode, then write
>     us = u"\N{COPYRIGHT SIGN} some text"

...and you can get unicode character names like that from unicodedata module:
>>> import unicodedata
>>> unicodedata.name(unichr(169))
'COPYRIGHT SIGN'

See also http://www.unicode.org/charts/charindex.html

- kv
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to