Binary to Hexa-decimal conversion gives a wrong answer

chamarawix

New member
Joined
Mar 10, 2020
Messages
5
I tried converting Binary to Hexadecimal everywhere the solution was to separate it to 4 chunks and get the solution like follow
  1. = (001100101.110111)2
  2. = (0_0110_0101 . 1101_1100)2
  3. = (0110_0101 . 1101_1100)2
  4. = (65.DC)16

But only on below binary value I cannot get correct answer.
  1. = (1011100.11101)2
  2. = (0101_1100 . 1110_1000)2
  3. = (5C.D8)16
But the correct answer should be
  1. = (5C.E8)16

Where did I go wrong?
 
Top