|
I'm learning about number systems, I have figured most of them out, can't figure out how I would go about doing Convert hex 59A17EDC to octal. Anyone any idea?. I have looked for youtube tutorials but there are none. Thanks. |
|
I would suggest that the easiest way would be to convert hex --> binary --> octal
so your number would be 59A17EDC 0101 1001 1010 0001 0111 1110 1101 1100 re space it in 3 digit groups from the right to left and add any needed leading zeroes 001 011 001 101 000 010 111 111 011 011 100 you should end up with the following q13150277334 |
|
If you do not have to do it in one step the easiest is to convert to decimal first and then to octal |
|
the easy way: 0xABCD = 1010 1011 1100 1101b => 1|010|101|111|001|101 = 125715(8) to summarize in hex all this bits are in groups of 4... regrop into groups of 3 |
|
Found these articles on the topic: |
