![]() |
need help translating
i know nothing about java script, but i need to translate this so another program can understand it.
here's the code: function jal(str){var zwq = '';for(var i=0;i < str.length;i++){zwq += ''+str.charCodeAt(i).toString(16);}return zwq;} where the str = "http://atdhenet.tv/" there's another var that is assigned like this var kol = jal("http://atdhenet.tv/") so i just need to know what var kol will end up being :/ thanks for all your help |
You could have found out by simply creating an HTML page with *ONLY* this content:
Code:
<script>You would have seen: Code:
687474703a2f2f61746468656e65742e74762fThat is, "h" has hex value "68", "t" has value "74", etc. |
| All times are GMT +1. The time now is 12:05 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.