Font-size: A A A
This is the bitwise OR operator and returns a one for each bit position where one or both of the corresponding bits of its operands is a one.
result = a | b;
This example would return 13 (1101).