Dev Tools

Base62 Encoder/Decoder

Encode and decode Base62 text locally in your browser.

Plain text
Base62 output
1wJfrzvdbtXUOlUjUf
About Base62

Base62 uses characters 0-9, A-Z, a-z (62 characters total). It is URL-safe and commonly used for short URLs, unique identifiers, and encoding data without special characters.

Was this page helpful?

Related tools

About Base62 Encoder/Decoder

Encode and decode Base62 using digits and upper/lowercase letters (0-9, A-Z, a-z). Common in URL shorteners and short IDs because it is compact and URL-safe.

How to use

  1. Enter the text or number you want to convert.
  2. Choose encode or decode.
  3. Copy the result for use as a short, URL-safe identifier.

Frequently asked questions

Why is Base62 popular for short links?
It packs more values per character than decimal while staying URL-safe (no +, /, or = padding), so IDs stay short.
Does it handle large numbers?
Yes — it converts arbitrarily large integers to and from their Base62 representation.