base58_decode

string

Decodes a Base58-encoded string

Syntax

base58_decode(string)

Parameters

string (string)

The Base58 string to decode

Returns

string

Decoded string

Examples

Input:
base58_decode("9Ajdvzr")
Output:
"Hello"
Input:
"3yZe7d" | base58_decode
Output:
"test"

The base58_decode() function decodes a Base58-encoded string back to its original form.

Usage

Use base58_decode() for decoding Base58 data from cryptocurrency addresses, short URLs, or other Base58-encoded identifiers.