how to see ascii value of alphabet in java code example

Example 1: Java program to print alphabets using ascii values

// Java program to print alphabets using ascii values
public class PrintAlphabetUsingAscii 
{
   public static void main(String[] args) 
   {
      char ch = 'B';
      int ascii = ch;
      int castAscii = (int) ch;   
      System.out.println("ascii value of " + ch + " is: " + ascii);
      System.out.println("ascii value of " + ch + " is: " + castAscii);
   }
}

Example 2: 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.

Tags:

Java Example