Convert byte array to hex string.
formatting parameters
input: [2, 5, 12, 255, 105, 139, 125]output: '02 05 0c ff 69 8b 7d' or '0x02 0x05 0x0c 0xff 0x69 0x8b 0x7d' Copy
input: [2, 5, 12, 255, 105, 139, 125]output: '02 05 0c ff 69 8b 7d' or '0x02 0x05 0x0c 0xff 0x69 0x8b 0x7d'
Convert byte array to hex string.