Hexdraw by twobit

a=int(raw_input(),16)
s=""
while a:s=" .#\n"[a%4]+s;a/=4
print s

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

download

return to the top page