I am trying to write a C# console application the displays the copyright symbol ©. According to this StackOverflow answer that should be possible. However, on my Windows 8 console display I get the lowercase letter c printed out. What could be wrong?
Found the solution. Add this before your Console.WriteLine commands:
Console.OutputEncoding = Encoding.UTF8;
That same sample you linked to works if I do that.
Credit for the solution: How to make console be able to print any of 65535 UNICODE characters
Marking this as community wiki since I'm not really the one who knew the answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With