I have a C application where I receive a UTF-8 string aover a socket as a char*. Now I want to print it on the console using Eclipse CDT. How can I do this? What I get is usually something like "Günther" what should be "Günther"
Thanks a lot.
|
I have a C application where I receive a UTF-8 string aover a socket as a char*. Now I want to print it on the console using Eclipse CDT. How can I do this? What I get is usually something like "Günther" what should be "Günther" Thanks a lot. |
||||
| show 3 more comments |
|
The best answer given above was by Joachim Isaksson. Thank you, this ideed seems to be the problem. I solved it in Eclipse by setting the "Encoding" settings for the run configuration to UTF-8.
|
|||
|
|
UTF-8to the console, but your console is set to display theiso-8859-1charset. How you change the console to useUTF-8depends on what program you're using to show the console, not your C application. – Joachim Isaksson Feb 10 at 21:50chcp 65001will switch the console toUTF-8, which is one of several possible encodings of Unicode. Unicode isn't an encoding (or "code page" in MS parlance) in itself. – Christoffer Hammarström Feb 10 at 22:32