I have tried searching for a solution for this through this site and many others. I couldn't find an answer for it.
So, my problem would be to print special Scandinavian vowels such as Ä, Ö or Å in my console. Is it possible in c++ or not doable?
I tried searching ASCII codes through, but only found some other special characters.
Also, im just a very beginner in c++.
Thank you for your answers! :)
EDIT: For other very beginner programmers who haven't developed their skills much yet: I also found out a more beginner friendly (yet very time consuming and frustrating way) to print Scandinavian vowels in ASCII.
A snippet from code:
int main()
{
cout << "Kirjoitan t" << char(132) << "ss" << char(132)<< " huvikseni " <<;
cout << "Skandinaavisilla kirjaimilla p" << char(132) << "tk" << char(132) << "n." << endl;
return 0;
}
Which would obviously print out: "Kirjoitan tässä huvikseni Skandinaavisilla kirjaimilla pätkän." = "Im writing with Scandic alphabet just for fun."
It will just make your typing really messy and confusing.. Trying to learn the proper way to do it as i speak :)