This operator works on numeric values only and shifts the bits in the first operand right by the number specified by the second operand; the appropriate number of zeroes go into the bits vacated to the left side of the value. For example:
x = 0b01100111 >> 3;
The value of x will be 0b00001100.