converting int to a character in java code example

Example 1: java get an int from a char

char charValue = '2';
int intValue = Character.getNumericValue(charValue); // 2

Example 2: int to string java

int x = 3;

Integer.toString(int)

Example 3: converting char to int in java

public class JavaExample{  
   public static void main(String args[]){  
	char ch = '9';
		
	/* Since parseInt() method of Integer class accepts
   	 * String argument only, we must need to convert
	 * the char to String first using the String.valueOf()
	 * method and then we pass the String to the parseInt()
	 * method to convert the char to int
	 */
	int num = Integer.parseInt(String.valueOf(ch));
		
	System.out.println(num);
   }
}

Example 4: number to char java

char b = Integer.toString(a);//7-->"7"

char b = (char) b;//65-->"A"

Example 5: int to char java

int c=123;
 String s = Integer.toString(c);
for(char ch: s.toCharArray())
    System.out.print(ch+",");

Tags:

Misc Example