Font-size: A A A
This is the bitwise AND operator which returns a 1 for each bit position where the corresponding bits of both its operands are 1.
result = a & b;
This code would return 9 (1001)