ICE Key Generator
Jump to navigation
Jump to search
Todo: Add description of what this is, what it does, where it can be used, ...
Source code
<script language="JavaScript" type="text/javascript"> var chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()_+-=[]{};/., ~`:<>?'; var l = chars.length-1; document.write('<span style="font-size:5em;">'); for(var x=0;x<=7;x++) { var chr = chars.charAt(Math.round(Math.random(new Date().getSeconds())*l)); var out; switch(chr) { case '<': out = '<'; break; case '>': out = '>'; break; case '&': out = '&'; break; default: out = chr; break; } document.write(out); } document.write('</span>'); </script>