Why Use This Tool
Bitwise operations are essential for low-level programming, permissions systems, flags, network masks, and optimization. A calculator helps verify operations and understand bit patterns visually.
Free online bit and byte calculator. Convert between bits, bytes, KB, MB, GB, TB, PB and their binary (IEC) equivalents instantly. — runs 100% in your browser, client-side only. No data is sent to any server. Free to use, no account required.
Supports both SI (decimal) and IEC (binary) units.
A bit calculator performs bitwise operations (AND, OR, XOR, NOT, shifts) on binary numbers. It shows the binary representation of inputs and outputs, helping visualize how bit manipulation works.
Bitwise operations are essential for low-level programming, permissions systems, flags, network masks, and optimization. A calculator helps verify operations and understand bit patterns visually.
Use a bit calculator when working with permission bits (Unix chmod), network subnet masks, flag-based systems, cryptographic operations, or debugging bitwise code.
XOR returns 1 when bits differ, 0 when they're the same. It's reversible (A XOR B XOR B = A), making it useful in cryptography and checksums.
Logical shift fills with zeros. Arithmetic right shift preserves the sign bit for signed numbers. Left shifts are typically the same for both.
AND with a mask extracts specific bits. For example, value AND 0xFF extracts the lowest 8 bits. It's how you isolate bit fields in packed data.