I am trying to write a C # console application that displays a copyright symbol ©. According to https://stackoverflow.com/a/312670/216 which should be possible. However, on my Windows 8 console display, I get a lowercase letter c printed. What could be wrong?
Found a solution. Add this before the Console.WriteLine commands:
Console.OutputEncoding = Encoding.UTF8;
The same pattern you are associated with works if I do this.
Credit for the decision: How to configure the console to print any of 65535 UNICODE characters
Noting this as a wiki community since I'm not the one who knew the answer.
Are you using your own font for your console? If so, this font may not support the character (c).
Source: https://habr.com/ru/post/1482459/More articles:What indexes will help me in this MERGE query? - sqlHow to set a goal in cssmin task? - gruntjs$ LASTEXITCODE undefined after command - powershellRemoving only items in a given list? - pythonHow to change PO BOX - Regex - c #Why is if-else for String faster than switch-case for listing? - stringConverting a javaScript object to another type of object - javascriptGithub repo change I forked out of - gitWhat is wrong with this uri uri? IllegalArgumentException, Illegal Character - javaFind option text with wildcard jquery - jqueryAll Articles