List of utility methods to do Char to Int Convert
int | toDigit(char ch, int index) hex to int int digit = Character.digit(ch, 16); if (digit == -1) { throw new RuntimeException("Illegal hexadecimal character " + ch + " at index " + index); return digit; |