Converts a sequence of numbers into a single hexadecimal string.
Each number in the input is treated as an unsigned 32-bit integer,
converted to its hexadecimal representation, and padded to 8 characters with leading zeros.
The resulting hexadecimal strings are concatenated together.
Parameters
...array: number[]
A sequence of numbers to convert to hexadecimal.
Returns string
A concatenated hexadecimal string representation of the input numbers.
Converts a sequence of numbers into a single hexadecimal string.
Each number in the input is treated as an unsigned 32-bit integer, converted to its hexadecimal representation, and padded to 8 characters with leading zeros. The resulting hexadecimal strings are concatenated together.