I have a little problem typing the padding character 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 can't I print the padding symbol, where is the error? if anyone has a solution, it would be very nice to have it. Thanks!
source share