Free Pascal - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.Free Pascal
Other pieces of example codes:$01 or $02
i shl 4
i xor j
z := (x shr 2) shr 2;
not i
x := $f and $ff;
Bitwise operators in another programming language: