Xbasic
*TO_HEX Function
Syntax
Value as N = *TO_HEX(B data)
Arguments
- data
An integer value to be converted to hexadecimal format.
Description
Convert binary data to hexadecimal data.
Discussion
The *TO_HEX() function converts a number to an hexadecimal string.
Example
? *to_hex(123) = "0000007B"
See Also