I am getting an ASCII value and I want to convert it into an integer because I know it\'s an Integer ASCII value.
int a=53;
This is an ASC
If you can guarantee the string contains an integer:
Integer.parseInt(String)