Skip to main content
Module

std/encoding/hex.ts

The Deno Standard Library
Latest
import * as mod from "https://deno.land/std@0.223.0/encoding/hex.ts";

Port of the Go encoding/hex library.

This module is browser compatible.

import {
  decodeHex,
  encodeHex,
} from "https://deno.land/std@0.223.0/encoding/hex.ts";

const encoded = encodeHex("abc"); // "616263"

decodeHex(encoded); // Uint8Array(3) [ 97, 98, 99 ]

Functions

Decodes the given hex-encoded string. If the input is malformed, an error is thrown.

Converts data into a hex-encoded string.