Base32 Encoder & Decoder - Online Base32 Converter
Encode or decode text using Base32 scheme. Ideal for legacy systems and data obfuscation. Works completely offline in your browser for maximum security.
UD5 Toolkit
Visualize & understand binary, octal, decimal, and hexadecimal conversions instantly
Each digit is multiplied by the base raised to its position power, then summed.
| Decimal | Binary | Octal | Hexadecimal |
|---|---|---|---|
| 0 | 0000 | 0 | 0 |
| 1 | 0001 | 1 | 1 |
| 2 | 0010 | 2 | 2 |
| 3 | 0011 | 3 | 3 |
| 4 | 0100 | 4 | 4 |
| 5 | 0101 | 5 | 5 |
| 6 | 0110 | 6 | 6 |
| 7 | 0111 | 7 | 7 |
| 8 | 1000 | 10 | 8 |
| 9 | 1001 | 11 | 9 |
| 10 | 1010 | 12 | A |
| 11 | 1011 | 13 | B |
| 12 | 1100 | 14 | C |
| 13 | 1101 | 15 | D |
| 14 | 1110 | 16 | E |
| 15 | 1111 | 17 | F |
Computers use binary because transistors have only two reliable states: ON (1) and OFF (0). All digital data is ultimately stored as bits.
Hex is widely used for color codes (#FF5733), memory addresses, MAC addresses, and Unicode code points (U+1F600 = 😀).
Octal was popular on older systems with 6-bit bytes (PDP-8). Today it's still used in Unix file permissions (e.g., chmod 755).
7F than 01111111.
1010 1010 → AA (since 1010=10=A). Going the other way, expand each hex digit into its 4-bit binary equivalent. Use our Quick Reference table above as a cheat sheet!
Encode or decode text using Base32 scheme. Ideal for legacy systems and data obfuscation. Works completely offline in your browser for maximum security.
Shows each character's 7‑bit or 8‑bit binary representation. Includes space separation. For learning binary encoding.
Convert text and files to Base64 or decode Base64 back to original content. Processed locally with no server upload, ensuring complete data security.
Turn a cardinal number (23) into its ordinal form (23rd). Supports large numbers. Simple and quick.
Paste a string of 0s and 1s and decode it back into ASCII text. Handles space‑separated blocks. Local.
Convert standard Arabic numbers into formal Japanese/Kanji numerals (e.g., 123 → 百二十三). Also supports large numbers.
Validate ISBN‑10 and ISBN‑13 numbers and compute their check digits. Useful for booksellers and libraries. All local.
Paste lines of text and automatically convert to an HTML ordered list with correct numbering and indentation.
Simulate adaptive bitrate logic by switching between different quality video segments. See how ABR algorithms work.
Enter text and see each character's 8‑bit binary laid out in a black‑and‑white grid. Beautiful data art. Local.
See the complete recursion tree for small Fibonacci or factorial calculations. Understand overlapping subproblems. Educational.
Paste a phone number and format it according to the E.164 standard. Identify country and detect common typos. Local parser.
Enter an acronym and see its most common full forms. Static dictionary. No internet needed after load.
Enter a number and see its Collatz sequence graphed. Watch the steps until it reaches 1. Mesmerizing math.
Search by MIME or file extension to see the corresponding type. Helpful when configuring web servers. Static.
Drop a file and see its detected type based on the first bytes (magic number). Identifies hundreds of formats. Local.
Choose tabular‑nums, diagonal‑fractions, ordinal and see the effect on a numeric list. Elegant data presentation.
Generate customizable alphabet tracing sheets with uppercase and lowercase letters. Select letters to focus on. Instant print. Local only.
Drop a file to see its MIME type and the first few magic bytes (hex and ASCII). No upload, works instantly.
Apply dyslexia‑friendly fonts, spacing, and background to any text. Preview and copy the formatted version. Improve readability.
Paste plain text and turn it into a nested outline using indent levels or Markdown headings. Great for planning.
Enter Braille dot numbers (1‑6) or paste Unicode Braille to decode into English text. Companion to text‑to‑Braille.
Generate cryptographically secure BIP39 mnemonic phrases (12 or 24 words) for HD wallet seeds. All entropy generated locally.
Enter terms and definitions and generate a clean `<dl>` HTML snippet. Great for glossaries and FAQs.
Encode a hidden message using zero‑width characters. The message looks like normal text. Decode with the same tool.
Paste text and instantly see if it contains hidden zero‑width characters often used in steganography. Reveal invisible payloads.
Paste word pairs (or load pre-made sets) and practice with randomized flashcards. Flip to reveal translation, mark as known/unknown. Local data, no login.
Highlight elements with aria‑describedby and see the linked description text. Verify a11y annotations.
Enter initials (e.g., NASA) and get possible expansions. For creative naming or organizational jokes.
Enter a regular expression and see a visual railroad diagram explaining the pattern. Learn and debug regex.