Display the ISO Latin-1 character set : Ascii Code « Development Class « Java






Display the ISO Latin-1 character set

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");
    }
  }
}

           
         
    
  








Related examples in the same category

1.ASCII Utility
2.Add a ASCII85 encoding to the stream
3.Reading CRLF terminated lines that contain only US-ASCII characters from an input stream