Computer Science, asked by ljp4548, 19 days ago

convert into ascci value (tzsndptuvn)?​

Answers

Answered by ashwath27
0

Answer:

!bhihlgdtyjfgyjykfuvgyufkgfkoguy

Answered by mehtakhushbuhd
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