Coggle requires JavaScript to display documents.
10001 & 10000 == 10000 // bit-wise and 10001 | 10000 == 10001 // bit-wise or 10001 ^ 10000 == 00001 // bit-wise xor ~1000 == 0111 // bit-wise not