How can I get the computer to cout in a foreign language such as spanish with ñ or german with ö, ä, ü and ß? if I cout these characters in a string, they r all fcked up. and instead have to actually pass the ascii character value, such as 132 for ä, or have a const char a_umlaut = 132.
could I define a macro (somehow) that would override the system whenever I type alt+132 it would instead of simply typing ä it would type " << a_umlaut << " ? ?