how to print character using ascii value 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: ascii values to display certain characters in java

/*ASCII acronym for American Standard Code for Information Interchange.
It is a 7-bit character set contains 128 (0 to 127) characters.
It represents the numerical value of a character.
For example, the ASCII value of A is 65.*/
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: 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 4: 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.

Example 5: how to add a number to the ascii value of a char in java

char a = 97+1;
char b = 'a'+2;
r = (char)(1+5)

Tags:

Java Example