Search code examples
hexdata-conversionplaintext

Plain text to Hexadecimal manually


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.


Solution

  • --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