Here I have a small piece of code:
ofstream hello ("hello.txt");
hello << "Γειά σου!"; //hello in greek
hello.close();
And here is the output:
Output on greek windows: "Γειά σου!"
Output on english windows: "ÃåéÜ óïõ!"
Can someone, please, help me find out how to fix this?