Function std::char::from_digit

pub fn from_digit(num: uint, radix: uint) -> Option<char>

Converts a number to the character representing it.

Return value

Returns Some(char) if num represents one digit under radix, using one character of 0-9 or a-z, or None if it doesn't.

Failure

Fails if given an radix > 36.