Mega Code Archive

 
Categories / Java / Development Class
 

Display the ISO Latin-1 character set

public class LatinSet {   public static void main(String[] args) {     System.out.println("ISO LATIN-1 CHARACTER SET");     for (int x = 160; x < 255; x++) {       System.out.print((char) x);       System.out.print("  ");       if (x % 8 == 7)         System.out.print("\n");     }   } }