In Qt for setting the label of a button to be the "Multiplication sign" (not astrisk(*)) this is used :
Button *myButton = new Button("\303\227");
I don't know anything about "\303\227". Also the code below will not print "Multiplication sign" :
cout << "\303\227" ;
I could not search for it cause I had no "keywords".
I need some keywords and some information about this number and why cannot it be printed with cout object.
Also i didn't want to add Qt tag for this question cause I think this is not much Qt related.
Thanks in advance.