Creating a buffer from a String object results in a zero-filled buffer (of length equal to the string length in UTF-16 code-units):
> Buffer.from(new String("Hello world"))
<Buffer 00 00 00 00 00 00 00 00 00 00 00>
> Buffer.from(new String("\u{1F4A9}"))
<Buffer 00 00>