Skip to main content
DevTools24

숫자 시스템 계산기

이진수, 8진수, 10진수 및 16진수 시스템 간에 숫자를 변환합니다. AND, OR, XOR, NOT 및 비트 시프트를 포함한 비트 연산을 수행합니다.

Quick Reference

Binary (base 2)
0, 1 only
Prefix: 0b
Octal (base 8)
0-7 only
Prefix: 0o
Decimal (base 10)
0-9
No prefix
Hex (base 16)
0-9, A-F
Prefix: 0x

Number Systems & Bitwise Operations - 기술 세부 정보

Understanding number systems is essential for low-level programming, networking, and debugging. Bitwise operations are used for flags, permissions, masks, and optimization in systems programming.

명령줄 대안

# Convert in terminal (bash)\necho $((2#1010))  # binary to decimal\nprintf '%x\\n' 255  # decimal to hex\nprintf '%d\\n' 0xFF  # hex to decimal\necho $((16#FF))  # hex to decimal