how to convert int to ascii char java code example

Example 1: how to convert an ascii number to character in java

// From Char to Ascii
char character = 'a';    
int ascii = (int) character;

// From Ascii to Char
int ascii = 65;
char character = (char) ascii;

Example 2: convert int to ascii java

int yourInt = 33;
char ch = (char) yourInt;
System.out.println(yourInt); // 33
System.out.println(ch); // !

Tags:

Java Example