Bitwise Operators Bitwise operations operate on the individual bits of numbers in their binary formats. Bitwise AND (&) ExpressionEvaluate with a logical AND operation. Bitwise Left Shift (<<) ExpressionShift bits to the left by the specified amount. Bitwise NOT (~) ExpressionPerform a bitwise logical negation operation. Bitwise OR (|) ExpressionEvaluate with a logical inclusive OR operation. Bitwise Right Shift (>>) ExpressionPerform a sign-propagating right shift by the specified amount. Bitwise Unsigned Right Shift (>>>) ExpressionPerform a zero-fill right shift by the specified amount. Bitwise XOR (^) ExpressionEvaluate with a logical exclusive OR operation. Share HTML | BBCode | Direct Link