Number Base Converter
0b
0o
0x
Base

Bit Visualization

Group by:
0
0
1
0
1
0
1
0
8-bit = 0010 1010

Conversion Steps

Decimal: 42
Binary: 101010 (each digit is a power of 2)
Octal: 52 (group binary by 3 bits)
Hex: 2A (group binary by 4 bits)

Bitwise Operations

255 & 15
DEC15
BIN1111
HEXF