i have a little problem by printing the complement symbol in android.
 char c = '\u2216'; 
 // should be the unicode for complement
 textView2.setText(c); 
 // gives out "" nothing
 // if i take
 c = '\u2229'
 // it works
But why i cant print out the complement symbol, where is the mistake ? if someone has a solution, it would be very nice to shar it. Thanks !
 
     
     
    