DOSEIの日記

技術メモ+日常ログ

ECMAScript

16 進数の 0 パディング

function Hex(x) { var hx = x.toString(16); return "00000000".substring(hx.length) + hx; }