toHex
Description
Returns a hex formatted string representing the unsigned integer argument . If the argument is negative, the hex string represents the value plus 2 32 .
Syntax
toHex( int )
Examples
toHex(
255
)
//returns "FF"
toHex(-
255
)
//returns "FFFFFF01"