← All tools
// ENCODERS

Base58 Encoder / Decoder online

Encode text to Base58 and decode Base58 strings — used in Bitcoin and IPFS.

Base58 Encoder / Decoder logo
by
CHUNKY
MUNSTER
INPUT0 CHARS
OUTPUT0 CHARS

About Base58

Base58 is an encoding scheme that avoids visually similar characters (0, O, I, l) — making it ideal for human-readable identifiers like Bitcoin wallet addresses and IPFS content identifiers. This tool uses the Bitcoin Base58 alphabet. Runs entirely in your browser.

How to Use base58

  1. Choose Encode or Decode mode.
  2. Paste your text or hex string (to encode) or your Base58 string (to decode).
  3. The result appears immediately below.
  4. Copy the output for use in cryptocurrency addresses, IPFS CIDs, or custom identifiers.

Base58 is a binary-to-text encoding that eliminates visually ambiguous characters — 0 (zero), O (uppercase O), I (uppercase i), and l (lowercase L) — from the character set, making strings safer for human reading and transcription. Bitcoin addresses, Ethereum keys in WIF format, and IPFS v1 CIDs all use Base58Check (Base58 with a checksum) or raw Base58.

Base58 in Blockchain and Distributed Systems

Bitcoin was the primary populariser of Base58. A Bitcoin address is a Base58Check-encoded public key hash — the encoding's lack of ambiguous characters reduces the risk of copying an address incorrectly by hand. IPFS uses Base58btc (the Bitcoin alphabet) for its CIDv0 content identifiers. Stellar, Ripple, and other protocols use variants with slightly different alphabets. This encoder uses the standard Bitcoin Base58 alphabet.

Frequently Asked Questions

What is the difference between Base58 and Base58Check?

Base58 is the pure encoding. Base58Check adds a 4-byte checksum derived from double SHA-256 before encoding, allowing error detection when the string is decoded. Bitcoin addresses use Base58Check; this tool does raw Base58 encoding.

Why does Bitcoin use Base58 instead of Base64?

Base64 includes 0, O, I, l, +, and /, all of which cause problems for human transcription or as URL-safe identifiers. Base58 was chosen specifically to be copy-paste and visually safe for financial addresses.

How do leading zeros work in Base58?

Binary leading zero bytes are preserved as "1" characters in Base58. This matters for Bitcoin addresses derived from public keys that hash to a leading zero byte.

Can I decode a Bitcoin address with this tool?

You can decode the Base58 layer, but recovering the original address requires also verifying the Base58Check checksum and stripping the version byte. This tool performs raw Base58 decoding only.

See also Base64 Encoder, Base32 Encoder, and the Hash tool for SHA-256 checksums.