function encodeHeximport { encodeHex } from "https://dotland.deno.dev/std@0.215.0/encoding/hex.ts"; encodeHex(src: string | Uint8Array | ArrayBuffer): stringConverts data into a hex-encoded string. ExamplesExample 1 import { encodeHex } from "https://deno.land/std@0.215.0/encoding/hex.ts"; encodeHex("abc"); // "616263" Parameterssrc: string | Uint8Array | ArrayBufferReturnsstring