Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function decodeBase32
import { decodeBase32 } from "https://deno.land/std@0.212.0/encoding/base32.ts";

Decodes a base32-encoded string.

Examples

Example 1

import { decodeBase32 } from "https://deno.land/std@0.212.0/encoding/base32.ts";

decodeBase32("NRQMA==="); // Uint8Array(3) [ 108, 96, 192 ]

Parameters

b32: string

Returns

Uint8Array