Base58 Decoder

Decode Base58 encoded data back to its original format.

Common Examples

Bitcoin address:

"1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2"

→ Decodes to binary data

IPFS hash:

"QmYwAPJzv5CZsnAztxH8uLfH8y"

→ Decodes to hash bytes

Simple text:

"JxF12TrwUP45BMd"

→ "Hello World"

Binary data:

"StV1DL6CwTryKyV"

→ [0x48, 0x65, 0x6C, 0x6C, 0x6F]