Binary to Hexidecimal

Both number systems binary and hexadecimal are imortant when working with code. Binary helps store all the tasks and information a comouter must follow in order to work the right way. Hexadecimal helps store a lot of that information because it is like binary code but more compact and short. In that case it leaves a lot more room for a lot more code, and an easier undertading.

Hexadecimal to Binary

To convert Hexadecimal numbers to Binary numbers we take every number and letter in the hexadecimal number and separeate them from reachother. Then we find out the binary code for each singular number. Then we line all the bianry codes up in order.

Binary to Hexadecimal

When converting Binary to Hexadecimal, we have to write the binary code out and split it in half. Then, we must take both havles and basically use them as their own numbers and count all the ones starting from their own beggingngs. Then we add them up and have two sums of groups. Then we transte the single numbers into hex numbers. For example, if ther is a 10 in one group, then that becomes A, and if the sum is 5 in the other group, the end number will be A5.