Whether is a number character
static bool isNumberCharacter(int codeUnit) { return codeUnit > 47 && codeUnit < 58; }