Base 37 by teebee

a=""
while 1:
 n=int(input(a));a="\n"
 while n:k=n%37+22;a=chr(26+k//32*39+k%58)+a;n//=37

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

download

return to the top page