How to convert ASCII to int?

前端 未结 8 1334
独厮守ぢ
独厮守ぢ 2021-01-17 10:08

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

8条回答
  •  野的像风
    2021-01-17 10:59

    int asciiValue = 53;
    int numericValue = Character.getNumericValue(asciiValue);
    
    System.out.println(numericValue);
    

提交回复
热议问题