Variables of type char
public class MainClass{ public static void main(String[] arg){ char myCharacter = 'X'; System.out.println(myCharacter); } }
X