convert into ascci value (tzsndptuvn)?
Answers
Answered by
0
Answer:
!bhihlgdtyjfgyjykfuvgyufkgfkoguy
Answered by
0
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
Similar questions