public class Unicode
{
public static void main( ) {
char bob = 'A'+1; // Converts A to B
System.out.println ( "bob's character = " + bob + " Unicode = " + (int) (bob));
System.out.println ( "martha's character = " + martha + " Unicode = " + (int) (martha));
}
}