Java ASCII asciiChar(int value)

Here you can find the source of asciiChar(int value)

Description

ascii Char

License

Open Source License

Declaration

public static char asciiChar(int value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static char asciiChar(int value) {
        if (value < 0x20 || value > 0x7e) {
            return '.';
        } else {//  w ww .  j a va2 s.  c  om
            return (char) value;
        }
    }
}

Related

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