Hello. There is such a problem. I save a text file on Windows-10 in Notepad with standard encoding settings. When I load it into onlinegbd, or on ubuntu and try to read it through C++ #include int main() { ifstream file; file.open("text.txt"); } it does it incorrectly. How and what kind of encoding should I set? I tried through locale::global(locale(different encodings)) and through setlocale(different encodings) it did not give much results. Thanks