HexToNumber
The HexToNumber function converts a number in hexadecimal format (string) to a number.
Definition
HexToNumber(valor)Parameters
| Name | Description | Data type |
|---|---|---|
| valor | Text containing the hexadecimal value to be converted. | string |
Example
The following example converts the hexadecimal value '144e' to a number:
HexToNumber('144e')The result is 5198 (numeric value).
More information
More information about the hexadecimal system can be found on Wikipedia.