Posted by Drake on Sunday, October 17, 2010 at 9:23am.
A hexadecimal digit can take up to 16 values, from 0 to 15. In order to represent values beyond 9 in one single digit, the digits A,B,C,D,E,F are used to represent 10,11,12,13,14,15 respectively.
Since we can also express 0 to 15 in 4 binary digits, there is a frequent need for conversion between hex and binary digits. Here is a conversion table:
hex binary
0 0
1 1
2 10
3 11
4 100
5 101
6 110
7 111
8 1000
9 1001
A 1010
B 1011
C 1100
D 1101
E 1110
F 1111
So E6 can be converted to binary digit by digit by combining E=1110 and 6=0110 into 11100110.
You can read more about the subject here:
http://en.wikipedia.org/wiki/Hexadecimal
On your PC you have good calculator.
Start¨Programs¨Accessories¨Calculator
When you open Calculator clik on View, then click Scientific.In up left angle you have numbers systems Hex Dec Oct and Bin. Click Hex.Use numbers and letters in down right angle to type some hexadecimal number. Then in up left angle click for some of numbers system and you representation.
You will see representation of this nuber in some other numbers system.
Related Questions
math - The following numbers can be represented as 8-bit numbers in the binary ...
Computer/assembly language - Write a procedure BCD to convert a hexadecimal ...
Computing in Security (Conversion Help) - 1.) Encrypt the hexadecimal message ...
CIS - 1.) Encrypt the hexadecimal message F9E8 using the Rail Fence cipher for ...
computers - All Processing and storage of data inside a computer is done in ...
math - the binary system is used for computer programming. a binary number ...
computer science /use java language - write the program that inputs a string ...
computers - digital logic design ( i have a lot questios so please help me) ...
electronic logic - write from 0- 1000 in binary hexadecimal octal and decimal
Computing in Security (Conversion Help) - 1.) Express each decimal number as an ...
For Further Reading