Answers for "how to change any char number to a numerical data"

3

char to int

int n = Character.getNumericValue(char);
Posted by: Guest on December-07-2020
5

number to char java

char b = Integer.toString(a);//7-->"7"

char b = (char) b;//65-->"A"
Posted by: Guest on June-29-2020

Code answers related to "how to change any char number to a numerical data"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language