Returns the hexadecimal string of a numeric value.
IntToHexa(31) // Returns "0000001F"
IntToHexa(31, 2) // Returns "00 00 00 1F"
IntToHexa(-1, 2) // Returns "FF FF FF FF"
Syntax
<Result> = IntToHexa(<Value> [, <Word size>])
<Result>: Character string
Result of the conversion to hexadecimal format.
<Value>: Integer
Number to convert to a string.Remark: 1- and 2-byte integers are processed in the same way as 4-byte integers.
<Word size>: Optional integer
Word size separated by spaces. A word is a "group" of hexadecimal digits. For example, a byte is a word of 2 hexadecimal digits.
Business / UI classification: Neutral code