// Demonstrates the for statement. public class Unicode { public static void main(String[] args) { for(int c=0; c<128 ; c++) if( c !=26 ) // clearscreen System.out.println("valeur: " + c + " caractere: "+ (char)c ); } }