Reverse Bits FIXED by Hendrik

for(j in r=readline()){n=r.charCodeAt(j);for(i=o=0;i++<8;n/=2)o=o*2|1&n;putstr(String.fromCharCode(o))}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page