base
Convert an integer to a string in a specified radix.
Syntax
Section titled “Syntax”v = base(number, radix, min_length)Description
Section titled “Description”Returns the string representation of number in base radix (2–36). Optional min_length zero-pads the result.
Examples
Section titled “Examples”base(255, 16) % 'FF'base(10, 2) % '1010'base(7, 2, 5) % '00111'