0

How to manually convert a plain text to hexadecimal ? Eg Hexadecimal form of Hello

P.S I do not need code but the manual way to convert.

Sivagami Nambi
  • 332
  • 4
  • 9

2 Answers2

2

--Convert the string to its ASCII form --Convert ASCII(decimal) to Hex

Eg Hello in ASCII is H is 72 ,e is 101, l is 108 , o is 111 And the Hex value of 72 is 48 101 is 65 108 is 6c 111 is 6f So the Hex representation of Hello is 48656c6c6f

Sivagami Nambi
  • 332
  • 4
  • 9
0

For example Hello present in text take that string character-wise, where H=72(int value) to HEXADECIMAL

DIVISION= 72 / 16 RESULT = 4 REMAINDER (in HEX)= 8(4.5-4=0.5,0.5*16=8)

DIVISION=4 / 16 RESULT = 0 REMAINDER (in HEX)= 4
Till Result becomes zero
ANSWER H=48(hex)
likewise for for all
finally,Hello=48656c6c6f