Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js string to arraybuffer

if (!("TextEncoder" in window)) 
  alert("Sorry, this browser does not support TextEncoder...");

var enc = new TextEncoder(); // always utf-8
console.log(enc.encode("This is a string converted to a Uint8Array"));
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #js #string #arraybuffer
ADD COMMENT
Topic
Name
8+4 =