Convert to hex by pooq

procedure main()
while a:=read()do{s:=""
while(a>0)do{s:="0123456789ABCDEF"[a%16+1]||s;a/:=16}
write(s)}
end

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

download

return to the top page