Answers for "ascii value of alphabets in java"

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);
   }
}
Posted by: Guest on February-19-2021
0

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.
Posted by: Guest on September-15-2020
-2

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)
Posted by: Guest on July-20-2020
-1

Java Program to Find ASCII Value of a characte

ASCII value of small letters i.e a = 97, b = 98, c = 99 ............... x = 120, y = 121, z = 122
ASCII value of capital letters i.e A = 65, B = 66, C = 67 .............. X = 88, Y = 89, Z = 90
Posted by: Guest on June-25-2021

Code answers related to "ascii value of alphabets in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language