pyw program not displaying unicode characters properly

Roy Smith roy at panix.com
Sun Oct 14 16:30:08 EDT 2012


In article <mailman.2178.1350235875.27098.python-list at python.org>,
 MRAB <python at 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" :-)



More information about the Python-list mailing list