Binary Tools

Bitwise OR

Perform bitwise OR operation.

Updated 2025-12-01

Bitwise OR

OR two binary values

Compute the bitwise OR of two binary operands.

OR Truth Table

A
B
A | B
0
0
=
0
0
1
=
1
1
0
=
1
1
1
=
1

Bitwise OR compares each bit and returns 1 if either bit is 1. Commonly used for setting bits, combining flags, and creating masks. All processing happens locally in your browser.

Related tools

Bitwise OR | Binary Tools