I am using repl.it to edit and compile some C++ code. I want to output the obelus (division sign) to the console. The following code should do it.
char div_sign ='\366';
cout << div_sign << endl;
This works in Visual Studio and from what I can find out it should work with any compiler. However, I do not get the correct output. The only thing I can think of is the repl does not use the OEM character set. Any suggestions to get this to work correctly in repl?