Converts a byte array to a lowercase hexadecimal string.
The byte array to convert.
A lowercase hexadecimal string representation.
hexBytesToString(new Uint8Array([255, 0])) // Returns 'ff00' Copy
hexBytesToString(new Uint8Array([255, 0])) // Returns 'ff00'
Converts a byte array to a lowercase hexadecimal string.