Base58 Decoder
Decode a Base58 string back to text.
What this tool does
A Base58 string pasted on the left decodes back to its original text on the right, live, using the Bitcoin alphabet.
What happens with invalid input
Base58 uses only the letters and digits that remain after
removing 0, O, I, and
l from the usual alphanumeric set. Pasting a character
outside that set is reported clearly rather than decoded into
something incorrect.
Text, not a cryptocurrency address
This decodes plain Base58 back to text. An actual cryptocurrency address or private key is encoded as Base58Check — plain Base58 plus a version byte and a checksum — so decoding one here will not separate out or verify that additional structure.
Privacy
Decoding happens in your browser. Nothing you paste is sent to a server.