Alphanumeric natural base set
From XionKB
The alphanumeric natural base set is a set of numeral bases that use the digits 0 through 9 and the letters A through Z, case insensitively, representing bases 2 through 36. Many programming language standard libraries, such as that of Python[1], have parsers supporting an arbitrary number base in this range. This is likely because such a generalised function supports the parsing of binary, octal, decimal, and hexadecimal notations all within a single logic base, prefixes aside.
Numeral bases |
Binary 2 | Octal 8 | Decimal 10 | Hexadecimal 16 | Dwarf thornal 24 | Thornal 32 | Base 64 64 |
Additional concepts |
Alphanumeric natural base set |
References
- ↑ Python documentation of the
int( )
builtin: https://docs.python.org/3/library/functions.html#int