Java ASCII from toAsciiChar(int i)

Here you can find the source of toAsciiChar(int i)

Description

Mengkonversi bilangan desimal ke karakter ASCII

License

Open Source License

Parameter

Parameter Description

Return

Character representasi karakter ASCII

Declaration

public static Character toAsciiChar(int i) 

Method Source Code

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

public class Main {
    /**//ww  w. j  av a  2 s. c o  m
     * Mengkonversi bilangan desimal ke karakter ASCII
     * @param int Bilangan desimal
     * @return Character representasi karakter ASCII
     */
    public static Character toAsciiChar(int i) {
        return new Character((char) i);
    }
}

Related

  1. toAsciiByteArray(final char[] carr)
  2. toAsciiByteArray(String s)
  3. toAsciiBytes(final String value)
  4. toAsciiBytes(String str)
  5. toAsciiChar(byte b)
  6. toASCIICode(byte[] bts)
  7. toAsciiFilename(String string)
  8. toAsciiLowerCase(char ch)
  9. toAsciiString(byte[] buffer)