I have the following code:
print u"William Burges (1827–81) was an English architect and designer."
When I try to run it from cmd. I get the following message:
Traceback (most recent call last):
File "C:\Python27\utf8.py", line 3, in <module>
print u"William Burges (1827ŌĆō81) was an English architect and designer."
File "C:\Python27\lib\encodings\cp775.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u2013' in position
20: character maps to <undefined>
How can I solve this problem and get Python to read this \ u2013 character? And why Python doesn't read it with existing code, I thought utf-8 works for every character.
thanks
EDIT:
This code displays the desired result:
print unicode("William Burges (1827-81) was an English architect and designer.", "utf-8").encode("cp866")
But when I try to print a few sentences, for example:
print unicode("William Burges (1827–81) was an English architect and designer. I am here. ", "utf-8").encode("cp866")
I get the same error message:
Traceback (most recent call last):
File "C:\Python27\utf8vs.py", line 3, in <module>
print unicode("William Burges (1827ŌĆō81) was an English architect and desig
ner. I am here. ", "utf-8").encode("cp866")
File "C:\Python27\lib\encodings\cp866.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u2013' in position
20: character maps to <undefined>