pub fn int_to_base36_char(n: u8) -> Result<String>
Returns the nth digit in base 36 or less (using capitalized digits). The original JS version had a bug where it would accept 36 as a base, when 0 to 35 is expected (36 digits).