Bitwise Calculator
// Perform bitwise AND, OR, XOR, NOT, and shift operations
15
F
1111
#About Bitwise Calculator
Free online bitwise calculator. Perform AND, OR, XOR, NOT, left shift, and right shift operations and see results in decimal, hexadecimal, and binary. This tool runs entirely in your browser — your data is never sent to a server. Just paste your input, get instant results, and copy with one click. No sign-up or installation required.
#FAQ
What is a bitwise AND operation? ▾
Bitwise AND compares each bit of two numbers and returns 1 only when both bits are 1. For example, 12 AND 10 = 8 because 1100 AND 1010 = 1000.
What is the difference between logical and bitwise shift? ▾
A logical right shift fills the leftmost bits with zeros, while an arithmetic right shift preserves the sign bit. Left shifts always fill with zeros.
</> Embed this tool ▾
Copy this code to embed the tool on your website. Adjust the height to fit your layout.
<iframe src="https://www.browserutils.dev/embed/bitwise-calculator" width="100%" height="500" frameborder="0" title="Bitwise Calculator"></iframe>