2007-10-14 16 進数の 0 パディング メモ プログラミング ECMAScript function Hex(x) { var hx = x.toString(16); return "00000000".substring(hx.length) + hx; }