Is there a way to turn a char into a String or a String with one letter into a char (like how you can turn an int>
char
String
int>
As no one has mentioned, another way to create a String out of a single char:
String s = Character.toString('X');
Returns a String object representing the specified char. The result is a string of length 1 consisting solely of the specified char.