Blog
Wild & Free Tools

Binary to Hex Cheat Sheet — Complete 0 to FF Reference

Last updated: April 2026 4 min read
Quick Answer

Table of Contents

  1. The 4-Bit Nibble Table (0 to 15)
  2. Common One-Byte Values (0x00 to 0xFF)
  3. Frequently Used 2-Byte Hex Values
  4. How to Use This Table for Multi-Byte Values
  5. Frequently Asked Questions

This cheat sheet covers every byte value (0 to 255) in binary, hexadecimal, and decimal. The table is organized in groups of 16 to match the structure of hexadecimal — each row is one hex "row" from 0x00 through 0xFF. Bookmark this page for quick reference when working with binary data, debugging, or studying for computer science exams.

The 4-Bit Nibble Table (0 to 15)

Start with the single hex digit range — each value maps to one 4-bit binary group. Memorizing this table lets you convert multi-byte hex values by inspection, without a calculator.

DecimalHexBinary
000000
110001
220010
330011
440100
550101
660110
770111
881000
991001
10A1010
11B1011
12C1100
13D1101
14E1110
15F1111

Common One-Byte Values (0x00 to 0xFF)

These are the values that come up most often in real work — powers of 2, round hex values, and frequently used byte patterns:

DecimalHexBinaryNotes
00000000000Null
10100000001Lowest bit
150F00001111Lower nibble mask
1610000100005th bit
322000100000Space (ASCII)
644001000000@ sign (ASCII)
1277F01111111Max signed byte
1288010000000Sign bit set
170AA10101010Alternating bits
192C011000000Top 2 bits
240F011110000Upper nibble mask
255FF11111111Max byte, all 1s
Sell Custom Apparel — We Handle Printing & Free Shipping

Frequently Used 2-Byte Hex Values

Two-byte (16-bit) values appear often in networking, color codes, and low-level programming:

DecimalHexBinary
25601000000000100000000
102404000000010000000000
409610000001000000000000
3276880001000000000000000
65535FFFF1111111111111111

How to Use This Table for Multi-Byte Values

For hex values longer than 2 digits, split them into 2-digit pairs and convert each byte separately using the table above.

Example: Convert hex 3A7F to binary

For values not in the table, or for verification, use the Number Base Converter — type the hex value and get binary, decimal, and octal simultaneously.

Value Not in the Table?

Type any binary or hex value into the converter — get all four bases (binary, octal, decimal, hex) in one instant result.

Convert Numbers Free

Frequently Asked Questions

What is the binary representation of hex FF?

Hex FF = binary 11111111 = decimal 255. FF is the maximum value that fits in one byte (8 bits), and 11111111 means all eight bits are set to 1.

How do I convert a hex value not in this table?

Use the 4-bit grouping method: split the hex number into individual digits, replace each with its 4-bit binary from the nibble table, and concatenate the results. Or type the hex value into the free converter and get binary, decimal, and octal at once.

What is the highest value a single hex digit can represent?

A single hex digit runs from 0 to F, which is 0 to 15 in decimal. Two hex digits (one byte) run from 00 to FF, which is 0 to 255 in decimal.

Andrew Walsh
Andrew Walsh Developer Tools & API Writer

Andrew worked as a developer advocate at two SaaS startups writing API documentation used by thousands of engineers.

More articles by Andrew →
Launch Your Own Clothing Brand — No Inventory, No Risk