Published
- 1 min read
uint8array to string
The solution for this is noted below
uint8array to string
Solution
var uint8array = new TextEncoder("utf-8").encode("¢");
var string = new TextDecoder("utf-8").decode(uint8array);
Try other methods by searching on the site. That is if this doesn’t work