Why does IDLE handle one symbol correctly but not another?
>>> e = '€'
>>> print unichr(ord(e))
# looks like a very thin rectangle on my system.
>>> p = '£'
>>> print unichr(ord(p))
£
>>> ord(e)
128
>>> ord(p)
163
I tried adding various # coding lines, but that didn't help.
EDIT: browser should be UTF-8, else this will look rather strange
EDIT 2: On my system, the euro char is displayed correctly on line 1, but not in the print line. The pound char is displayed correctly both places.

ord(e)is not returning the unicode code point of€; it's retuning whatever bogus byte IDLE's encoding gave to a character that it couldn't properly represent. – Jonathan Feinberg Oct 28 at 15:02