You are viewing our Forum Archives. To view or take place in current topics click here.
Binary to Hex help?
Posted:
Binary to Hex help?Posted:
Status: Offline
Joined: Feb 01, 201113Year Member
Posts: 634
Reputation Power: 36
Status: Offline
Joined: Feb 01, 201113Year Member
Posts: 634
Reputation Power: 36
I'm doing computer science at college and i'm in the middle of an assignment but i need someone to explain to me how this:
Converts to this:
Thanks in advance im just really confused.
1011011001000
Converts to this:
16c8
Thanks in advance im just really confused.
#2. Posted:
Status: Offline
Joined: Apr 14, 20159Year Member
Posts: 3,018
Reputation Power: 201
Status: Offline
Joined: Apr 14, 20159Year Member
Posts: 3,018
Reputation Power: 201
It's complicated to get your head around but if you look at a binary to hex conversion chart you should understand. Always work backwards, its not easy to explain but hex is basically 0-9 then A-F. They both have the same value so if you look up the chart they should match up.
C=1100 etc.
Kind of hard for me to explain this but I gave it a shot haha, hopefully someone else knows better than me. You convert each 4 digit binary into its hex.
C=1100 etc.
Kind of hard for me to explain this but I gave it a shot haha, hopefully someone else knows better than me. You convert each 4 digit binary into its hex.
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Dec 29, 201211Year Member
Posts: 1,428
Reputation Power: 56
Status: Offline
Joined: Dec 29, 201211Year Member
Posts: 1,428
Reputation Power: 56
GT pretty much explained it but yeah the hex system has 16 digits, the extra needed 6 digits are represented by the first 6 letters of the English alphabet. Hence, hex digits are 0,1,2,3,4,5,6,7,8 and 9. A,B,C,D,E,F. This number system is the most commonly used in mathematics and information technologies. I.e. in html programming colors can be represented by a 6-digit hexadecimal number: FFFFFF represents white, 000000 represents black, and so on.
- 1useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.