The script?
It's the binary of the script as far as I can gather (the script is the field above).
i mean this
v� H�' !�E l;O�q "��
well.. i have something like this and i want to convert it to base64..
how can i do it ?
You can't I don't think. As far as I know "�" is a wildcard that is used when a program can't understand stuff so that might make it impossible to convert it.
Where is your string stored that you want to convert, what is it? Can you send it me.
I can write a quick program to convert something like that if you're interested. You just need to convert every character to string and understand that every character takes up 128 bits and make a string from there.
For example, a simple string like ABC.
Would make A=65, B=66, C=67.
This could then be converted to a long string of:
01000001 01000010 01000011
This would apparently give a decimal value of: 4276803 ("apparently" - because I used an online converter instead).