0
Does anyone know a namespace in c++ which contains the "×" sign?
So basically I want that sign to appear on the screen but using the namespace std shows "|-ù" instead of "×"
1 Réponse
+ 1
Just use \u00D7 instead of
Just like cout << "\u00D7";
And it should work fine