User`s guide

APPENDIX A Function Reference
User’s Guide 135
uFromHex
Description Converts a string of hexadecimal numbers into an integer.
Syntax integer uFromHex (input)
Parameters
string input
The string to convert.
Examples Convert a hexadecimal string
uFromHex("A3F") // returns 2623
uFromHex("B") // returns 11
uToHex
Description Converts an integer value into a hexadecimal string.
Syntax string uToHex (input)
Parameters
integer input
The integer to convert.
Examples To convert an integer:
uToHex(45) // returns ā€œ2Dā€
uHexDecode
Description Composes a string from hexadecimal values.
Syntax string uHexDecode(input)
Examples
To compose a string from hex values:
uHexDecode("313730") // returns "170"
uHexDecode(313730) // returns "170"