In article <mailman.2178.1350235875.27098.python-l...@python.org>,
 MRAB <pyt...@mrabarnett.plus.com> 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