why is this returning -1? And when I try to capitalize the first letter and not get the numerical value of what I am trying to convert, my output is blank
char firstLetter = concept.charAt(0);
int equi;
String restOf = concept.substring(1);
if(Character.isUpperCase(firstLetter) == false) {
firstLetter = (char)((firstLetter + 32));
}
equi = Character.getNumericValue(firstLetter);
return equi;
}```