I ended up casting the int I wanted to convert as a char. Not precisely what I wanted, but I got the job done. Thanks for the reply. Click to expand... In case you're still interested the correct way ...
Though Java already has a character type and char keyword to represent and manipulate characters, the language also requires a Character class for two reasons: Character c1 = new Character ('A'); ...