Convert an ascii string to hex characters, as a hex editor would.
Convert an ascii string to hex characters, as a hex editor would.
Rate Convert an ascii string to hex characters, as a hex editor would.
(2(2 Vote))
'Example:
'The text "Joey Rules" would be converted to
'4A 6F 65 79 20 52 75 6C 65 73
Function TextToHex(Text As String) As String
Dim text3 As Integer
For y = 1 To Len(Text)
Text2 = Mid(Text, y, 1)
TextToHex = TextToHex & Hex(Asc(Text2)) & " "
Next
End Function
Convert an ascii string to hex characters, as a hex editor would. Comments
No comments yet — be the first to post one!
Post a Comment