Answers for "get ascii value in java"

2

ascii in java

public class AsciiValue {

    public static void main(String[] args) {

        char ch = 'z';
        int ascii = ch;
        // You can also cast char to int
        int castAscii = (int) ch;

        System.out.println("The ASCII value of " + ch + " is: " + ascii);
        System.out.println("The ASCII value of " + ch + " is: " + castAscii);
    }
}
Posted by: Guest on April-09-2021
-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 "Java"

Java Answers by Framework

Browse Popular Code Answers by Language