Java ASCII to String ASCIIToChar(final int ascii)

Here you can find the source of ASCIIToChar(final int ascii)

Description

Convert the ASCII value to character

License

Open Source License

Parameter

Parameter Description
ascii ascii value

Return

character value

Declaration

public static char ASCIIToChar(final int ascii) 

Method Source Code

//package com.java2s;

public class Main {
    /**//from ww  w .j  a  v a 2 s  .c o  m
     * Convert the ASCII value to character
     *
     * @param ascii ascii value
     * @return character value
     */
    public static char ASCIIToChar(final int ascii) {
        return (char) ascii;
    }
}

Related

  1. ascii2Str(String s)
  2. ascii2String(String ASCIIs)
  3. asciiBytesToChar(byte[] bytes)
  4. asciiBytesToString(byte[] val)
  5. AsciiToChar(int asc)
  6. asciiToLowerCase(String s)
  7. asciiToString(byte ascii)
  8. asciiToString(byte[] b, int off, int len)