Convert a decimal number to Base36 (digits 0–9 and letters a–z) and back. Base36 is a compact way to write large numbers, common for short IDs and codes.
kf12oi-kf12oi.
The Base36 Converter turns a decimal number into Base36 - using digits 0–9 and letters a–z - and back to decimal. Base36 packs large numbers into short, URL-safe strings, which is why it is popular for compact IDs and codes. It uses BigInt, so numbers of any size stay exact.
Base36 is a positional numeral system that represents numbers with 36 characters - the digits 0–9 and the letters a–z - so large numbers become much shorter than in decimal.
Base36 encodes numbers using a case-insensitive alphanumeric alphabet, which is convenient for short IDs. Base64 encodes arbitrary binary data using 64 characters, including symbols. They serve different purposes.
Yes. The converter uses BigInt, so it handles numbers of any size without losing precision.
Yes. Put the separator - for example "-" - into the "Ignore characters" field. The value is split on it, every part is converted on its own and the separators stay in place, so kf12oi-16 becomes 1234567890-42.