import java.util.Scanner;
public class Ex4_9 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("enter character");
String a = input.nextLine();
char ch = a.charAt(0);
if (a.length() == 1){
System.out.println("The character entered is " + ch);
System.out.println(" the Unicode for character " + ch + " " + ??);
}
else
System.out.println("complain about the number of characters.");
}
}
I want to be able to enter E and java display 69. what do i need to fill in for the ??