Answers for "how to access ascii value of an element of string in java"

0

how to get ascii value of string letter in java

char character = name.charAt(0); // This gives the character 'a'
int ascii = (int) character; // ascii is now 97.
Posted by: Guest on September-15-2020
-2

how to add a number to the ascii value of a char in java

char a = 97+1;
char b = 'a'+2;
r = (char)(1+5)
Posted by: Guest on July-20-2020

Code answers related to "how to access ascii value of an element of string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language