Answers for "string to ascii in java"

0

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
-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 "Java"

Java Answers by Framework

Browse Popular Code Answers by Language