Encoding and cipher guides
In-depth explanations of the formats behind EncodeLab tools, with worked examples and step-by-step conversion instructions.
How to Read Binary: A Complete Guide
Binary is not a code to be cracked; it is a number system to be read. This guide takes you from your first byte to decoding whole sentences by hand — with a mental toolkit small enough to fit in your head and practice strings to prove it works.
Pair with the Binary Translator toolText to Binary: UTF-8 Bytes Explained
When you convert text to binary, the computer is not translating words into a secret alphabet. It is encoding characters as bytes, then writing each byte with only 0s and 1s. This guide follows that path from a single letter to Unicode emoji, so you can understand exactly why the output looks the way it does.
Pair with the Text to Binary Converter toolBreaking the Caesar Cipher: From Rome to ROT13
The Caesar cipher is the oldest surviving encryption scheme in the West, and breaking it is a perfect little detective story. This guide tells the story of the cipher, then breaks it for real — complete with the letter counts that give the key away.
Pair with the Caesar Cipher toolBase64, Decoded: The String That Carries Everything
Somewhere in your inbox right now, a Base64 string is quietly carrying an image. It sits at the end of data URLs, inside email attachments, and in the middle of JSON Web Tokens — a long string of letters, digits, plus signs, and equals signs that looks like gibberish. It is none of those things. Base64 is one of the most predictable encodings on the internet, and this guide decodes it, byte by byte, for real.
Pair with the Base64 Encoder & Decoder toolAll EncodeLab tools
Reference charts
Look up character codes, 8-bit number values, and Caesar shift mappings.
ASCII Table
Use this ASCII table to look up the 128 standard control characters, symbols, digits, and English letters. For text conversion beyond ASCII, use Unicode-aware tools.
Binary Number Chart
This binary number chart maps every possible 8-bit value to decimal and hexadecimal. It is useful for reading byte values, checking binary homework, and understanding number conversion.
Caesar Cipher Shift Table
A Caesar cipher rotates every letter by a fixed number of alphabet positions. This table shows the complete mapping for every non-zero shift, making it easy to verify an encoded letter or recognize a likely key.