<br><br><div class="gmail_quote">On Wed, Feb 11, 2009 at 2:50 PM, jeffg <span dir="ltr"><<a href="mailto:jeffgemail@gmail.com" target="_blank">jeffgemail@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">


On Feb 11, 2:35 pm, Albert Hopkins <<a href="mailto:mar...@letterboxes.org" target="_blank">mar...@letterboxes.org</a>> wrote:<br>
<div>> On Wed, 2009-02-11 at 10:35 -0800, jeffg wrote:<br>
> > Having issue on Windows cmd.<br>
> > > Python.exe<br>
> > >>>a = u'\xf0'<br>
> > >>>print a<br>
><br>
> > This gives a unicode error.<br>
><br>
> > Works fine in IDLE, PythonWin, and my Macbook but I need to run this<br>
> > from a windows batch.<br>
><br>
> > Character should look like this "ð".<br>
><br>
> > Please help!<br>
><br>
</div>> You forgot to paste the error.<br>
<br>
The error looks like this:<br>
    File "<stdin", line 1, in <module><br>
    File "C:\python25\lib\encodings\cp437.py", line 12, in encode<br>
      return codecs.charmap_encode(input,errors,encoding_map)<br>
UnicodeEncodeError: 'charmap' codec can't encode character u'\xf0' in<br>
position 0<br>
: character maps to <undefined><br>
<br>
<br>
Running Python 2.5.4 on Windows XP</blockquote><div><br><br>That isn't a python problem, it's a Windows problem. For "compatibility reasons", Microsoft never added Unicode support to cmd.  When you do print u'', python tries to convert the characters to the console encoding (the really old cp437, not even the Windows standard cp1252), it messes up. AFAIK, you'll have to use the chcp command to switch to an encoding that has the character and then print u'\xf0'.encode(the_encoding) to get it to display. There isn't any way around it- we've tried.<br>
<br>

</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<div><div></div><div>--<br>
<a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
</div></div></blockquote></div><br>