Advertisement

Number Base Converter

Convert numbers between binary, decimal, hexadecimal, octal, and any base from 2 to 36.

Binary Base 2
Octal Base 8
Decimal Base 10
Hexadecimal Base 16
Advertisement

Number Systems Explained

Computers process data in binary (base 2) — only 1s and 0s. Humans commonly use decimal (base 10). Programmers frequently work with hexadecimal (base 16) since one hex digit represents exactly 4 bits, and octal (base 8) which represents 3 bits per digit.

Quick Reference

DecimalBinaryHexOctal
0000
81000810
151111F17
16100001020
25511111111FF377
Advertisement