Java: Print the ascii value of a given character
ASCII Value Finder
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 and Language Statistics
- Weekly Trends and Language Statistics