Answers for "get ascii in java"

0

how to print ascii value in java

public class AsciiValue {

    public static void main(String[] args) {

        char ch = 'a';
        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 June-21-2020
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
0

get ascii in java

public class AsciiValue {

    public static void main(String[] args) {

        char ch=a;
        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);
    }
}

or

char character = name.charAt(0); // This gives the character 'a'
int ascii = (int) character; // ascii is now 97.
Posted by: Taylor Swift on April-19-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language