string ke ASCII di java

// A simple cast from String to int will do the job
String me = "a";
int me_ASCII = (int) me;
// 97
Rocku0