====== Hex ====== Hex( [, ]) The function is designed to convert a number to a string with a hexadecimal representation. The function does not add any prefixes. **Parameters** |< 100% 15% >| |number|The number to convert.| |minlen|The minimum length of the result. Insignificant digits will be padded with zeros.| **Examples** Hex(123456) # --> "1E240" Hex(123456, 8) # --> "0001E240" **Remarks** The maximum number that can be converted is an unsigned 64-bit integer.