So erhalten Sie ASCII -Wert des String -Buchstabens in Java
char character = name.charAt(0); // This gives the character 'a'
int ascii = (int) character; // ascii is now 97.
Aakashcode12