def char_numeric_huh(w_char): c = ord(w_char.value) return values.w_true if unicodedb.isnumeric(c) else values.w_false