Skip to main content
Module

std/encoding/hex.ts>decodeHex

The Deno Standard Library
Go to Latest
function decodeHex
import { decodeHex } from "https://deno.land/std@0.223.0/encoding/hex.ts";

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

Examples

Example 1

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

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

Parameters

src: string

Returns

Uint8Array