Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: 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[] String) {
		int chr = 'Z';
		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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe