2
I’m having trouble showing messages on cmd
because the same when accented appear disfigured. This occurs in any language I use (C, C++, . bat, etc).
For example instead of :
minha multiplicação é :
Appears :
Minha multiplica├º├úo ├® :
I wonder if there is any way to fix this with any specific Windows configuration for the cmd
.
Note: Using Windows 8. Setting up with chcp 1252 did not resolve the issue.
You said the message appears disfigured. You could edit the question showing the way the message appears?
– vinibrsl
Edited question.
– Beto
The original text appears to be in UTF-8, chcp 1252 is not UTF-8.
– Bacco
chcp 860
works?– Victor Stafusa
@Victorstafusa all these "old" encodings are single-byte. For UTF-8, it skirts with the 65001, but the best way in my view is to change the font encoding in the IDE.
– Bacco