ztlevi
9/16/2017 - 6:49 PM

Conversion between char and Character

char c = '*';
Character c2 = new Character(c);
char c3 = c2.charValue();