I have a string "ab05d705" and I am trying to convert it to the following so I can add it to a Uint8Array. So how do I convert the string "ab05d705"
to
0xab,0x05,0xd7,0x05
to put into the following
var data = new Uint8Array([0xab,0x05,0xd7,0x05]);
Any help would be so appreciated.