w3resource

Java: Print the ascii value of a given character

Java Basic: Exercise-41 with Solution

Write a Java program to print the ASCII value of a given character.

Pictorial Presentation:

Java: Print the ascii value of a given character.

Sample Solution:

Java Code:

public class Exercise41 {
    public static void main(String[] args) {
        // Define an integer variable 'chr' and assign the ASCII value of 'Z' to it.
        int chr = 'Z';
        
        // Print the ASCII value of 'Z' to the console.
        System.out.println("The ASCII value of Z is: " + chr);
    }
}

Sample Output:

The ASCII value of Z is :90 

Flowchart:

Flowchart: Java exercises: Print the ascii value of a given character

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to list the available character sets in charset objects.
Next: Write a Java program to input and display your password.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.