Java bitwise operators include ~ (bitwise NOT/complement), << (left shift), >> (right shift), and >>> (unsigned right shift). Option D '&&' is the logical AND operator, not bitwise - it operates on boolean values, not individual bits. Options A, B, C are all valid bitwise operators in Java.