Answers for "how to convert ascii string of characters to an integer value using java"

1

string into ascii in java

// A simple cast from String to int will do the job
String me = "a";
int me_ASCII = (int) me;
// 97
Posted by: Guest on April-20-2021

Code answers related to "how to convert ascii string of characters to an integer value using java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language