In my WPF app, when I attempt to use Console.WriteLine
for debugging purposes, I get a ?
in the "Output" window when writing unicode characters.
Console.WriteLine("こんにちは!");
// Output: ?????!
The solution mentioned in many other threads does not seem to work with WPF
Console.OutputEncoding = Encoding.UTF8; // Crashes
Is it possible to get unicode to work in the output tab?