I have a C# console application, and I was trying to do some ASCII art within it. However, some of the characters I wanted to use are Unicode. So, I was searching the internet/SO and couldn't find a consolidated answer on how to set the console to be Unicode in a C# console application.
TDLR: How do I set the console in a C# console application to be Unicode?
Edit: I did find this post after searching for something not related to this question.
Console.InputEncoding
andConsole.OutputEncoding
toEncoding.UTF8
, the code page is changed internally, so no need to start processchcp
. – Alanis