Use the below binary converter to convert Binary values to Decimal, Hexadecimal and Octal values.

Binary Number2
Decimal Number10
Octal Number8
Hexadecimal Number16

Enter any binary number to this binary converter and click on convert button to convert binary to decimal, hexadecimal and octal.

Also Try:

Binary Number

Binary numbering system uses only two symbols 0 and 1. Each digits of a binary number is referred to as bits. Binary system is also known as base -2 system. Each digit is represented by the increasing power of 2 from the LSB (Least Significant Bit). Binary system is the heart of digital electronics and is used for information flow. In digital electronics, 0 and 1 are used to denote logic states, high and low. Arithmetic operations are also possible in binary system.

Decimal Number

Whole number, a decimal point and a fractional value combines to form a decimal number. The decimal point separates the whole number part from the fractional part of the number. Each digit of a decimal number can be any number from 0 to 9. Any value less than 1 is written to the right of decimal point. Decimal numbers are also known as base-10 number or counting numbers. Place value of decimal number varies as the whole number powers of 10 starting from the left of decimal point. Similarly, the place value of digits left to decimal point varies as the division of power of tens.

Hexadecimal Number

Hexadecimal number system uses 16 different symbols to represent a numeric value. It uses numbers 0 to 9 and alphabets A to F for representation. . The place value of each digits of an hexadecimal number varies as the whole number powers of 16 starting from the right (Least Significant Digit). The first single digit number in hexadecimal system is 0 and the last is F. Similarly, the first two digit hexadecimal number is 10 and the last is FF and so on. It is used as an alternative for binary numbers by developers and programmers.

Octal Number

Octal numbers use digits from 0-7 only. It is known as base-8 number. The place value of each digits of an octal number varies as the whole number powers of 8 starting from the right (Least Significant Digit). The first single digit number in octal system is 0 and the last is 7. Similarly, the first two digit octal number is 10 and the last is 77 and so on. Octal number system was widely used in early computers.

Binary to decimal Conversion

Example: Convert 11112 to decimal number

A binary number can be converted into decimal number using the following formula:

Decimal Number = (Dn X 2n+ …………… + D2 X 22+ D1 X 21+ D0 X 20).

Where,

Dn– D0→ digits of a binary number.

Decimal number = (1 X 23 + 1 X 22 + 1 X 21 + 1 X 20) = 8 + 4 + 2 + 1 = 1510

Read More: How to convert a binary number to a decimal number

Binary to Octal Conversion

Example: Convert 11112 to octal number

Split binary number into sets of three digits starting from the LSB. Note down the decimal number corresponding to each sets of three digits to convert binary number to octal number.

In this example 1111, 1111 can be rewritten as 001-111. Writing down the decimal number corresponding to the digits: 001→1 ,111→1.

So 11112 = 178

Binary to Hexadecimal Conversion

Example: Convert 11112 to hexadecimal number

Split binary number into sets of four digits starting from the LSB. Note down the hexadecimal number corresponding to each sets of four digits to convert binary number to hexadecimal number. (Refer the below table).

In this example 1111, 1111 can be rewritten as 0000-1111. Writing down the decimal number corresponding to the digits: 0000→0 ,1111→F.

So 11112 = F16

Binary, Decimal, Octal and Hexadecimal conversion table

BinaryDecimalOctalHexadecimal
0001010101
0010020202
0011030303
0100040404
0101050505
0110060606
0111070707
1000081008
1001091109
101010120A
101111130B
110012140C
110113150D
111014160E
111115170F

Also Try:

Other Converters