how to store ascii value of char in 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: ascii values to display certain characters in java
char a = 65, b = 66, c = 67;
System.out.println(a);
System.out.println(b);
System.out.println(c);
/* this is how you type ASCII values in java */
Example 3: how to get ascii value of string letter in java
char character = name.charAt(0); // This gives the character 'a'
int ascii = (int) character; // ascii is now 97.