Version: 1.0
The Hex function returns the hexadecimal value of an integer number.
<% =Hex(123) %>
7B
<% =Hex(-123) %>
FF85
You can also use a negative integer number.
<% =Hex(123.456) %>
7B
For a number with a decimal point (floating-point), the digits to the right of the decimal point are ignored.