The bitwise inclusive OR operator (|) compares each bit of its first operand to the corresponding bit of its second operand. If either bit is 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.
Both operands to the bitwise inclusive OR operator must be integer type.
Expression | Expression
> a = 0x55555555
> b = 0xAAAAAAAA
> PRINT INT_TO_HEX_STR(a|b)
0xFFFFFFFF