Java ASCII asciiChars()

Here you can find the source of asciiChars()

Description

ascii Chars

License

Apache License

Declaration

public static void asciiChars() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static void asciiChars() {
        for (int code = 0; code < 128; code++) {
            System.out.println("code=" + code + ",0x" + Integer.toHexString(code) + " [" + (char) code + "]");
        }/*from   w  w w  . j av a  2  s  . c  om*/
    }
}

Related

  1. ascii2Bcd(byte[] asc)
  2. ascii2BCD(byte[] val, int len)
  3. AsciiBTAddressToBytes(String btAddress)
  4. asciiBytes(String x)
  5. asciiChar(int value)
  6. asciiCharToBytes(char[] chars)
  7. asciiDump(byte[] in)
  8. asciiEbcdic(String source)
  9. asciiEndsWithIgnoreCase(String source, String suffix)