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:

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:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join