Syntax:
String Hex(Long number)
Parameters:
| number | (Long) Any valid numeric expression. |
|---|
Note:
If number is not already a integer, then it is rounded to the nearest integer before being evaluated.
| If number is |
function returns |
| Null |
Null |
| Empty |
Zero (0) |
| Any other number |
up to 8 hexadecimal characters |
Hexadecimal value of number can be entered directly by preceding numbers in the proper range with
&H. For example,
&H10 in hexadecimal represents decimal
16.
Example:
VBScriptSelect and copy to clipboard
Dim sHex
sHex = Hex(5)
' Returns "5"
sHex = Hex(10)
' Returns "A"
sHex = Hex(459)
' Returns "1CB"