// PrintH2: show character for the ASCII code 72 import java.io.*; class PrintH2 { public static void main(String[] arg) { char c; c = (char) 72; System.out.println(72); System.out.println(c); } }