โฐ
๐ Base64
๐ Common
๐ Life
๐ Crypto
๐ Encode/Decode
๐ป Developer
๐ผ๏ธ Image
๐ฎ Fun
Base62 Encode/Decode
Input
Length:
0
Copy Input
Clear
Output
Length:
0
Copy Output
Encode โ Base62
Decode โ Base62
Swap
How Base62 works
Alphabet: 62 symbols 0โ9, AโZ, aโz (total 62 distinct characters).
Encoding: interpret input bytes as a big baseโ256 integer and convert to baseโ62 via repeated division.
Decoding: accumulate baseโ62 digits back into baseโ256 bytes (reverse process).
Variants: some implementations reorder the alphabet; ensure both sides use the same set.
Note: Base62 is a textual representation for compact IDs/short links, not encryption.