Converter Tool
Enter a decimal number. Choose between unsigned and signed (two's complement) interpretation. The bit size affects how negative numbers are represented.
Bits:
0
Type:
Unsigned
Binary Representation:
Hexadecimal Representation:
About Number Systems
Decimal System
The decimal system is a base-10 numbering system that uses ten distinct symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. It is the most commonly used number system in everyday life.
Octal System
The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal numerals can be made from binary numerals by grouping consecutive binary digits into groups of three (starting from the right).
Decimal to Octal Conversion Table
| Decimal | Octal | Decimal | Octal |
|---|---|---|---|
| 0 | 0 | 8 | 10 |
| 1 | 1 | 9 | 11 |
| 2 | 2 | 10 | 12 |
| 3 | 3 | 11 | 13 |
| 4 | 4 | 12 | 14 |
| 5 | 5 | 13 | 15 |
| 6 | 6 | 14 | 16 |
| 7 | 7 | 15 | 17 |
Two's Complement
Two's complement is a mathematical operation used to represent negative numbers in binary systems. It is widely used in computing because it simplifies arithmetic operations such as addition and subtraction.
To convert a positive number to its negative counterpart in two's complement:
- Convert the number to binary.
- Invert all the bits (change 0 to 1 and 1 to 0).
- Add 1 to the result of the inversion.
To convert a negative two's complement number back to decimal:
- Invert all the bits.
- Add 1 to the result of the inversion.
- Convert the result to decimal and prefix it with a negative sign.
Example: 8-bit Two's Complement
Positive Number (5):
0000 0101 (binary)
Negative Number (-5):
1111 1010 (inverted bits of 5)
1111 1011 (add 1 = two's complement representation of -5)
Range for 8-bit Two's Complement:
-128 (1000 0000) to 127 (0111 1111)
Related Tools
Octal to Decimal
Convert octal numbers to decimal effortlessly
Hex to Decimal
Convert hexadecimal numbers to decimal effortlessly
Text to Hex
Convert text to hexadecimal representation effortlessly
CMYK to RGB
Convert CMYK color values to RGB for digital applications
Pantone to RGB
Convert Pantone colors to RGB values for digital design
Base64 Encode Tool
Encode text to Base64 format with ease right in your browser.