What is the name of the pattern:
1011 0110
B6
Hexadecimal Names | |||
---|---|---|---|
nibble | pattern name | nibble | pattern name |
0000 | 0 | 1000 | 8 |
0001 | 1 | 1001 | 9 |
0010 | 2 | 1010 | A |
0011 | 3 | 1011 | B |
0100 | 4 | 1100 | C |
0101 | 5 | 1101 | D |
0110 | 6 | 1110 | E |
0111 | 7 | 1111 | F |
If there are not enough bits at the left to form a complete group of four, add zero bits to the left, (but be sure that it is clear by context how many bits you are describing). For example:
1010000010000010 = 1010 0000 1000 0010 = A082
Another example:
10100110101111 = 10 1001 1010 1111 = 0010 1001 1010 1111 = 29AF
Usually '0x' is placed at the front of a pattern name to show that it is a hexadecimal pattern name:
0x0010 = 0000 0000 0001 0000 0xFACE = 1111 1010 1100 1110
Please understand that hexadecimal pattern names are used by humans for talking about bit patterns. Inside the computer there are only bits and their patterns. Hexadecimal is used in books and documents (outside the computer) to describe these bit patterns.
What is the hexadecimal pattern name of the following bit pattern:
01101010