Convert a Number or numeric String between numeric bases.
Syntax
Parameters
subject - The number to convert.from - The numeric base to convert from.to - The numeric base to convert to.fromchars - The character list to use for the from base. If omitted, it will default to the numbers 0-9 followed by the letters a-z. This gives a maximum of base 36. If higher bases are to be used, longer strings need to be specified, up to a maximum of 256.
Result
Returns a String containing numeric subject converted to a different numeric base.