Binary Converter

Convert between binary, decimal, hex, octal, and any base (2-36). IEEE 754 viewer, bitwise operations, two's complement, and binary arithmetic.

Base 2-36 IEEE 754 Bitwise Ops Two's Complement
Number Base Converter
IEEE 754 Floating Point
Bitwise Operations
Binary Arithmetic

Frequently Asked Questions

What number bases does this converter support?
This converter supports binary (base 2), octal (base 8), decimal (base 10), hexadecimal (base 16), and any custom base from 2 to 36. Bases above 10 use letters A-Z as additional digits.
What is IEEE 754 floating point representation?
IEEE 754 is the standard for representing decimal numbers in binary. A 32-bit float uses 1 sign bit, 8 exponent bits, and 23 mantissa bits. A 64-bit double uses 1 sign bit, 11 exponent bits, and 52 mantissa bits. This tool shows both with color-coded segments.
What is two's complement and why is it important?
Two's complement is how computers represent negative integers in binary. The most significant bit indicates the sign. This converter shows 8-bit, 16-bit, and 32-bit two's complement for negative numbers, helping developers understand how signed integers are stored in memory.
What bitwise operations are available?
The tool supports AND, OR, XOR, NOT, left shift, and right shift operations. Enter two numbers, and see the result of each operation in both decimal and binary. Useful for low-level programming, networking, and embedded systems.
Can I convert fractional numbers between bases?
Yes. Enter a fractional number like 10.625 in decimal and see its representation in binary, octal, hex, and any custom base. The converter handles up to 10 fractional digits for precision.
Copied!