In article <[email protected]>,
 MRAB <[email protected]> wrote:
 
> Which codepoint is it? What is the codepoint's name?
> 
> Here's how to find out:
> 
>  >>> hex(ord("?"))
> '0x190'
>  >>> import unicodedata
>  >>> unicodedata.name("?")
> 'LATIN CAPITAL LETTER OPEN E'

Wow, I never knew you could do that.  I usually just google for "unicode 
0190" :-)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to