Get your own Node server Result Size: 625 x 565
let buf = Buffer.from('abc');

console.log(buf.toString());

//Display the Buffer without converting it into a String:

console.log(buf);

              
abc
<Buffer 61 62 63>