we can convert character to an integer equivalent to the ASCII value of the same but can we do the reverse thing ie convert a given ASCII value to its character equivalent?
Character.toChars:
public static char[] toChars(int codePoint) Converts the specified character (Unicode code point) to its UTF-16 representation stored in a char array.
public static char[] toChars(int codePoint)
Converts the specified character (Unicode code point) to its UTF-16 representation stored in a char array.