Number.toHexString()

Signature

String toHexString (int i)

Domain

action, condition

Description

Return a String containing the hexadecimal representation of the int passed.

Parameters

NameTypeDescription
iintAn int to convert to a hexadecimal String.

Returns

TypeDescription
StringA String containing the hexadecimal representation of the int passed.

Cautions

none

Example


String result = Number.toHexString (57);

Result is: result contains: "39"