java ascii char to int 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: 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 3: java convert char to int

char something = '1';
int value = Integer.parseInt(something + "");
System.out.println(value);  // prints 1

Tags:

Java Example