Get your own Node server
var 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>