packed UTF 9 by yt

import std.stdio;void main(){int d,i,b;while(~scanf("%x",&b)){d|=b<<i;i+=8;if(i>8)printf("%c",d&511),i-=9,d>>=9;}}

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

download

return to the top page