> 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> -- http://mail.python.org/mailman/listinfo/python-list