//this program prints all the characters with unicode from 0 to 127. //Some of these characaters can't be printed on the monitor directly, so //you get a empty box in such cases. class character_example2 { public static void main(String args[]) { for(int i =0; i<128;i=i+1) { char c = (char)i; System.out.println("Character with unicode "+i+" is : "+c); } } }