Visual Studio Code – Visual Studio console outputting wrong characters
I am working on a project using the characters ▓ and ░. Currently, I have code that looks like this: const char dark = 0xB2; const char light = 0xB0; cout << dark; cout << light; This code works perfectly…