hexlong(
VALUE
)

The hexlong( function converts a decimal number to an eight-digit hexadecimal number expressed as a text string


Parameters

This function has one parameter:

value – is the number you want to convert to hexadecimal. The value should be from 0 to 4294967295.


Description

Converts a decimal number to an eight-digit hexadecimal number expressed as a text string. See Non Decimal Numbers for background information on hexadecimal numbers.

hexlong(68) ☞ 00000044
hexword(50000) ☞ 0000C350
hexword(50000000) ☞ 02FAF080

Note: This function is equivalent to:

radixstr("hex",number)[-8,-1]

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.