Answers for "ascii char 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

char to ascii java

// From Char to Ascii
char character = 'a';    
int ascii =character;
								// Need not to specify
// From Ascii to Char
int ascii = 65;
char character = ascii;
Posted by: Guest on August-18-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language