Hallo pl,
Ein Blob bringt da Klarheit wieviele bytes es sind:
var s = String.fromCharCode(0xA); var b = new Blob([s]); console.log(b.size); // 1 byte
also keine 16 bit sondern nur 8. Wenn es UTF16 wäre, hätte der Blob eine Länge von 2 bytes!
🤦
LG,
CK