is there any to convert a string into Hex using Vb-script?
here there is a simple guide doing this, but it seems it works only for numbers not alphabets.
is there any to convert a string into Hex using Vb-script?
here there is a simple guide doing this, but it seems it works only for numbers not alphabets.
Here it is:
strString = "test"
strHex =""
For i=1 To Len(strString)
strHex = strHex + Hex(Asc(Mid(strString,i,1)))
Next
WScript.Echo strHex