Binary to Base36 Converter

Enter a binary number (0s and 1s) and instantly get the base-36 equivalent using digits 0-9 and letters A-Z.

Binary Input

Examples:

Base-36 Output

Summary

Enter a binary number (0s and 1s) and instantly get the base-36 equivalent using digits 0-9 and letters A-Z.

How it works

  1. Enter or paste your binary string (0s and 1s) into the input field.
  2. The tool strips any spaces or non-binary characters and reads the full bit string.
  3. The binary string is interpreted as a big integer (base-2 to decimal).
  4. The decimal value is divided repeatedly by 36 and remainders are mapped to 0-9 and A-Z.
  5. The resulting base-36 digits are assembled in the correct order and displayed.
  6. Optional: view the intermediate decimal value for verification.

Use cases

  • Generate compact alphanumeric IDs from binary hashes or UUIDs.
  • Convert binary-encoded integers to base-36 for short URL tokens.
  • Understand number-base conversions from binary up to base-36.
  • Debug encoding pipelines that use base-36 as an intermediate step.
  • Compress large binary numbers into shorter alphanumeric strings.
  • Learn how positional numeral systems beyond base-16 work.

Frequently Asked Questions

Last updated: 2026-06-13 · Reviewed by Nham Vu