Martin v. Löwis added the comment:
Your 2.6 example is incorrect. Try
py> print u'\u20ac'
If you want the 3.0 equivalent of your 2.6 code: it is
py> print(r'\u20ac')
\u20ac
Closing this as "works for me".
--
nosy: +loewis
resolution: -> works for me
status: open -> closed
New submission from Giampaolo Rodola' :
While trying to port pyftpdlib to Python 3.x I noticed that Python 3.0
has a serious issue since unable to print certain unicode characters on
stdout:
Python 3.0 (r30:67507, Dec 3 2008, 20:14:27) [MSC v.1500 32 bit
(Intel)] on win
32
Type "help", "copyrig