Unicode: console print statement and PythonWin: replacement for off-table chars HOWTO?

Fredrik Lundh fredrik at pythonware.com
Tue Jan 10 15:03:34 EST 2006


> Are you certain that this is a valid unicode character? Checking other
> values (like \u0020 which is a blank space) seems to work okay. What
> does \u034A represent?

>>> import unicodedata
>>> unicodedata.name(u"\u034A")
'COMBINING NOT TILDE ABOVE'

(space is a valid CP850 character, combining not tilde above is not).

</F>






More information about the Python-list mailing list