0 votes
in JAVA by
How to get ASCII value of char in java?

1 Answer

0 votes
by

How to get ASCII value of char in java?

char character = 'a';    

int ascii = (int) character;

In your case, you need to get the specific Character from the String first and then cast it.

char character = name.charAt(0); // This gives the character 'a'

int ascii = (int) character; // ascii is now 97.

🔗Reference : stackoverflow.com

🔗Source: Java Interview Questions and Answers

🔗Reference: Javatpoint.com

Related questions

0 votes
asked Oct 18, 2020 in JAVA by sharadyadav1986
0 votes
asked Sep 3, 2019 in JAVA by Robin
...