class Unicodetabelle2
{ static void ausgabe(String s)
  { // String encoding="8859_1";
    // String encoding="Cp1252";
    String encoding="Cp850";
    byte[] b;
    try   { b = s.getBytes(encoding);  // Umcodierung
            System.out.print(new String(b));
          }
     catch (Exception exc)
          { System.out.println("Fehler"); }
  } // ausgabe

  public static void main(String[] arg)
  { char ch;
    for (int i=2; i<=15; i++)
    { for (int k=0; k<=15; k++)
      { ch = (char)(i*16 + k);
        ausgabe(ch + " ");
      } // for k
      System.out.println();
    } // for i
    System.out.println(System.getProperty("file.encoding"));
  } // main
} // class Unicodetabelle2
