Hex()

Syntax

Result$ = Hex(Value)
Description
Convert a numeric number into a string, in hexadecimal format.

Example :
  a$ = Hex(12) ; a$ will be "C"
Note: If leading zero are needed in the output string, use the RSet() command as follows:
  a$ = RSet(Hex(12),4,"0") ; a$ will be "000C"

Supported OS

All

<- FindString() - String Index - LCase() ->