|
|
|
| |
Eingabe | ||||
Ergebnis |
˜ | bitweise negieren |
<<, >> | shiften nach links bzw. rechts |
& | bitweise und |
^ | bitweise exklusives oder |
| | bitweise oder |
dez | hex | binär |
---|---|---|
0 | 0x0 | 0000 |
1 | 0x1 | 0001 |
2 | 0x2 | 0010 |
3 | 0x3 | 0011 |
4 | 0x4 | 0100 |
5 | 0x5 | 0101 |
6 | 0x6 | 0110 |
7 | 0x7 | 0111 |
8 | 0x8 | 1000 |
9 | 0x9 | 1001 |
10 | 0xa | 1010 |
11 | 0xb | 1011 |
12 | 0xc | 1100 |
13 | 0xd | 1101 |
14 | 0xe | 1110 |
15 | 0xf | 1111 |