Base 37 by leonid

s=''
while 1:
 n=input(s);s='\n'
 while n:k=~n%37;n/=37;s=chr(-k/26*39%97-k+65)+s

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

download

return to the top page