Any Base Converter

Oct 26, 2018

Any Base Converter is used to perform arbitrary base conversion between numbers in any Base 2 (Binary) to Base 36. You can enter multiple numbers (one per line) and convert all of them from one base to another in one shot.

Input: Paste numbers below (1 per line)

Settings

A Numeral system is used to represent numbers using a pre-defined list of symbols. The simplest numeral system is Binary which comprises of only two such symbols: 0 and 1. These two numbers can be used to represent numbers of any size. For example, decimal numbers can be represented as follows in Binary:-

DecimalBinary
00
11
210
311
4100
The next well known numeral system after Binary is Octal which comprises of 8 symbols from 0 to 7. After that comes the number system - Base 10, which we humans use in our daily lives. It has symbols from 0 to 9. Number systems after Base-10 utilize alphabets for the symbols because there are only 10 digits. Base 16, for example uses the character A to represent the decimal number 11, B to represent 12, F to represent 15, etc.

Computers use different numeral bases. A digital computer only deals with 0s and 1s, so binary (base 2) is used at the simplest level. Computers group binary digits together and there Hexadecimal (base 16) is used. When systems such as the PDP-8, ICL 1900 and IBM mainframes were employed, Octal numbers (base 8) became widely used. Three binary digits are grouped together to create an Octal number. Us humans, on the other hand, prefer decimal number system for our day to day operations. Similarly, there are usages for various other number bases.

This tool is aimed at allowing you to convert between any number bases ranging from Base 2 (Binary) to Base 36.

Base Conversion Example

The value of the mathematical constant pi (π) is 3.14159 in Decimal. The same value is 3.243f3e0370cdc8754f37 in Hexadecimal.

Settings Explained
  • 1. From Base

    Choose the base you want to convert from.

    The examples below assume an input of 1000 and a conversion to Base 16 (Hex).

    10 (Decimal)

    3e8
    8 (Octal)

    200
  • 2. To Base

    Choose the base you want to convert to.

    The examples below assume an input of 1000 and a conversion from Base 10 (Decimal).

    16 (Hex)

    3e8
    8 (Octal)

    1750
Comments 0

History
Apr 1, 2018
Tool Launched