Base 37 by Histocrat (author)

#!ruby -n
n=eval$_
b=37
b*=37while b<=n
(d,n=n.divmod b;putc d.to_s(36).sub'10','A')while 0<b/=37
puts

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

download

return to the top page