Is cmd.exe of Windows 7 capable of displaying the degree character '°'?

http://en.wikipedia.org/wiki/Degree_symbol http://ascii-table.com/ansi-codes.php

link|improve this question
feedback

3 Answers

Works for me. I don't see why it wouldn't work. Did you try it? If so, post the code you used, there may be a problem in the code itself.

I just used an echo command to test it:

> ECHO °
°
link|improve this answer
feedback

At the prompt, hold down the Alt key and type 0176 on your numeric keypad. When you release the Alt key, a degree symbol should be displayed.

link|improve this answer
feedback

cmd.exe is capable of it; however, the Windows Console might not: by default it uses the system's "OEM" codepage (cp775, for example - see chcp), and Unicode (chcp 65001) is incredibly flaky (well, on XP at least).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.