Convert hex string to byte array.
input bytes hex representation
input: '02 05 0c ff 69 8b 7d' or '2 5 c ff 69 8b 7d' or '02050cff698b7d' or '0x23 0xaa 0x00'output: [2, 5, 12, 255, 105, 139, 125] Copy
input: '02 05 0c ff 69 8b 7d' or '2 5 c ff 69 8b 7d' or '02050cff698b7d' or '0x23 0xaa 0x00'output: [2, 5, 12, 255, 105, 139, 125]
Convert hex string to byte array.