Visual Tools
Calculators
Tables
Mathematical Keyboard
Converters
Other Tools


Base Conversion Table


Related Tools

Base Converter
Base Convertion Visualizer

🔢 Base Conversion Table

Interactive number base converter for 0-1000

Showing 1-20 of 1001 numbers | Custom Base: 5
DecimalBinary (Base 2)Octal (Base 8)Hexadecimal (Base 16)Custom Base (5)
00000
11111
210222
311333
4100444
51015510
61106611
71117712
8100010813
9100111914
10101012A20
11101113B21
12110014C22
13110115D23
14111016E24
15111117F30
1610000201031
1710001211132
1810010221233
1910011231334
Page 1 of 51








Getting Started with the Conversion Table

    The table lists every decimal value from 00 to 10001000 alongside its representation in binary, octal, hexadecimal, and a configurable custom base. Each row is a complete cross-base lookup for a single decimal number.

    Quick orientation:

  • Use the controls above the table to set a custom base, search for a specific decimal value, and paginate through the full range.

Using the Custom Base Input

    The Custom Base (2-36) field lets you add a fifth column showing every decimal value in any base from 22 to 3636.

    How to use it:
  • 22 and 3636 into the input
  • 1010 upward use letters A-Z as digits, exactly like hexadecimal extends 090-9 with A-F
  • Reset to return the custom base to 55

  • Try base 33 to see ternary digits, base 2020 to see how letters start appearing in the cells, or base 3636 to see the densest representation supported.

Searching for a Specific Number

    The Search Number field filters the table by decimal value.

    Two search modes are supported:
  • Exact match: type a single number such as 255255 to jump straight to that row
  • Substring match: type a partial digit sequence such as 9999 to surface every decimal containing that sequence (9999, 199199, 299299, 990990, 991991, ...)

  • Behavior notes:
  • 00 to 10001000 only; values outside the range show an error
  • 11 on every new search
  • Reset to clear the search and return to the full 00-10001000 range

Navigating Pages

    The table shows 2020 rows per page across the full 10011001-value range, producing 5151 pages when no search is active.

    Pagination controls:
  • First jumps to page 11
  • Previous moves back one page
  • Next moves forward one page
  • Last jumps to the final page

  • The header row stays fixed while scrolling within the table container, so column labels remain visible even when paging through later sections of the range.

Reading the Color-Coded Columns

    Each base column uses a distinct color to make scanning across rows easier:
  • Decimal in blue identifies the source value
  • Binary in green grows quickly in digit count — 10001000 already needs 1010 binary digits
  • Octal in purple is more compact than binary but still uses only numeric digits
  • Hexadecimal in red is the most compact of the fixed columns and introduces letters A-F for values 1010-1515
  • Custom Base in a highlighted background reflects the current base setting

  • Comparing column widths in any single row gives an immediate sense of how representational density changes with base size: higher bases use fewer digits to express the same value.

What Is a Number Base?

A number base (or radix) is the count of distinct digits a positional system uses to represent values. Base 1010 uses ten digits (00-99); base 22 uses two (00, 11); base 1616 uses sixteen (00-99 then AA-FF).

In any base bb, each position represents a power of bb. A digit sequence dndn1d1d0d_n d_{n-1} \ldots d_1 d_0 in base bb has the value:

dnbn+dn1bn1++d1b+d0d_n b^n + d_{n-1} b^{n-1} + \ldots + d_1 b + d_0


For example, the binary number 101121011_2 expands as 123+022+121+120=111 \cdot 2^3 + 0 \cdot 2^2 + 1 \cdot 2^1 + 1 \cdot 2^0 = 11 in decimal.

For a deeper treatment of positional notation, see the number bases theory page.

Binary, Octal, and Hexadecimal

    The three fixed columns of the table are the bases most used in computing:
  • Binary (base 2) is the native representation of digital hardware — each digit is a single bit
  • Octal (base 8) groups bits in threes; one octal digit equals three binary digits
  • Hexadecimal (base 16) groups bits in fours; one hex digit equals four binary digits

  • The grouping relationship makes octal and hex compact stand-ins for binary: 111111112=3778=FF16=255101111\,1111_2 = 377_8 = FF_{16} = 255_{10}. This is why memory addresses and color codes are written in hex rather than binary.

    For full coverage, see the binary numbers page, octal numbers page, and hexadecimal numbers page.

How Base Conversion Works

    Converting a decimal number NN to base bb uses repeated division:
  • NN by bb; the remainder is the lowest-order digit
  • NN with the quotient and repeat
  • 00; reading remainders bottom-up gives the digits

  • Example: converting 1313 to base 22 gives remainders 1,0,1,11, 0, 1, 1 read upward, so 1310=1101213_{10} = 1101_2.

    The reverse direction — base bb to decimal — uses the positional expansion shown earlier: multiply each digit by the appropriate power of bb and sum.

    For step-by-step conversion with worked examples, see the base conversion theory page.

Related Tools and Concepts

Related Tools:

Base Converter - Convert a single value between any two bases without scanning a table.

Base Conversion Visualizer - Step through the repeated-division algorithm with visual digit accumulation.

Related Concepts:

Positional Notation - The principle behind every base in the table.

Binary Arithmetic - Addition, subtraction, and multiplication directly in base 22.

Two's Complement - How signed integers are represented in binary.

Bitwise Operations - Operations that act on the binary representation rather than the decimal value.