Hi I want the opposite function of getNumericValue
int i = Character.getNumericValue('A');
if('A' == Character.someFunction(i)){
System.out.println("hooray");
}
I have tried "Character.forDigit" but this seems to be completely wrong.
Am new to java so please help.