Number.toHexString()
Signature
String toHexString (int i)
Domain
action, condition, query
Description
Return a String containing the hexadecimal representation of the int passed.
Parameters
Name | Type | Description |
i | int | An int to convert to a hexadecimal String. |
Returns
Type | Description |
String | A String containing the hexadecimal representation of the int passed. |
Example
String result = Number.toHexString (57);
Result is: result contains: "39".