![]() |
![]() |
![]() |
|
HEX$
This command will return an eight character string equivalent to the hexadecimal representation of the number provided.
Return String=HEX$(Value)
Value Integer
The value returned is the hexidecimal representation string of the specified value
The value provided should be an integer value.
PRINT "NUMBER:";42;" BINARY:";BIN$(42);" HEX:";HEX$(42)
|