How Do I Get The Ascii Value Of A Character?
How Do I Get The Ascii Value Of A Character? Very simple. Just cast your char as an int . 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. What is the value of ASCII from character