A number base converter that accepts 1 creation argument to specify which number base to convert to. If nothing is specified, or the number is out of range (1-64), it defaults to 16. The converted number is sent in the form of a symbol type. Much of the code is based on the musl library's vfprintf function.
The symbol array is as follows:
"0123456789abcdef"
"ghijkmnopqrstuvw"
"xyzACDEFGHJKLMNP"
"QRTUVWXYZ?!@#%^&"
Some letters were taken out for looking too similar to numbers or other letters.