5

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.

AlexLiesenfeld
  • 2,872
  • 7
  • 36
  • 57

1 Answers1

2

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.

enter image description here enter image description here

AlexLiesenfeld
  • 2,872
  • 7
  • 36
  • 57