<STYLE>table.convTable tr td{font-size:11pt;color:040;background:daf4da}</STYLE> // °³º° Å×ÀÌºí¿¡ ½ºÅ¸ÀÏ ÁöÁ¤
<SCRIPT>
var str=''; // Ãâ·Â º¯¼ö ¼±¾ð
str+='<TABLE cellspacing=0 cellpadding=1><TR>'; // Àüü Å×ÀÌºí ½ÃÀÛ

for (hxp=0;hxp<5;hxp++){ // 16Áø¼ö¸¦ Áß½ÉÀ¸·Î ½ÂÀ» 0¿¡¼­ 4½Â±îÁö 1¾¿ Áõ°¡ÇÏ´Â ·çÇÁ
  str+='<TD><TABLE border=1 cellpadding=1 cellspacing=0 class=convTable>'; // °³º° Å×ÀÌºí ½ÃÀÛ
  var nfrom=Math.pow(16,hxp)+Math.pow(16,hxp-1)*16-1; // °¢ °³º° Å×ÀÌºí ½ÃÀÛ ¼öÄ¡ nfff°¡ µÇ°Ô ȯ»ê
  str+='<TR align=center><TD>Hex</TD><TD>Dec</TD><TD>Bin</TD></TR>'; // °³º° Å×À̺í Á¦¸ñ ³Ö±â
  for (i=nfrom;i<Math.pow(16,(hxp+1));i+=Math.pow(16,hxp)){
      // °³º° Å×À̺íÀÇ ½ÂÀ» °è»êÇÏ¿© Å×À̺íÀ» ¿Ï¼º½ÃÅ°´Â ·çÇÁ
    str+='<TR><TD align=center>'+i.toString(16)+'</TD>'; // 16Áø¼ö ¹®ÀÚ¿­·Î ȯ»ê
    str+='<TD align=right>'+i.toString(10).fontcolor("0000aa")+'</TD>';
      // 10Áø¼ö ¹®ÀÚ¿­·Î ȯ»ê .toString(10)´Â »ý·«ÇÏ¿©µµ µÊ, Ãâ·Â ±ÛÀÚ »ö»ó º¯°æ
    str+='<TD align=right><SMALL>'+i.toString(2)+'</SMALL></TD></TR>'; // 2Áø¼ö ¹®ÀÚ¿­·Î ȯ»ê
  } // °³º° Å×ÀÌºí ¸¶°¨
  str+='</TABLE></TD>'; // °³º° Å×ÀÌºí ´ÝÀ½
} // Àüü Å×ÀÌºí ¸¶°¨
str+='</TR></TABLE>'; // Àüü Å×ÀÌºí ´ÝÀ½

document.write(str); // °á°ú ¹®ÀÚ¿­ Ãâ·Â
</SCRIPT>