//Node.js
Buffer.from('48656c6c6f20576f726c64', 'hex');
//Deno
import {decodeString} from "https://deno.land/std/encoding/hex.ts";
new Buffer(decodeString('48656c6c6f20576f726c64'));
//Node.js
Buffer.from('48656c6c6f20576f726c64', 'hex');
//Deno
import {decodeString} from "https://deno.land/std/encoding/hex.ts";
new Buffer(decodeString('48656c6c6f20576f726c64'));