Java ASCII to String asciiToString(int asciiCode)

Here you can find the source of asciiToString(int asciiCode)

Description

ascii To String

License

Apache License

Declaration

public static String asciiToString(int asciiCode) 

Method Source Code

//package com.java2s;
/*/*from w  ww  . j a  v  a 2s  . co  m*/
 * This file is part of the TSPHP project published under the Apache License 2.0
 * For the full copyright and license information, please have a look at LICENSE in the
 * root folder or visit the project's website http://tsphp.ch/wiki/display/TSPHP/License
 */

public class Main {
    public static String asciiToString(int asciiCode) {
        return String.valueOf((char) asciiCode);
    }
}

Related

  1. ASCIIToChar(final int ascii)
  2. AsciiToChar(int asc)
  3. asciiToLowerCase(String s)
  4. asciiToString(byte ascii)
  5. asciiToString(byte[] b, int off, int len)
  6. asciiTrimR(String str, int length)