The American Standard Code for Information Interchange(ASCII). The Free Table Online Reference
27 de mar. de 2011
21 de fev. de 2011
How to convert Hexadecimal to Decimal in Javascript?
Convert Hexadecimal to Decimal is very simple, see below:
var h = 'FE';d = parseInt(h,16);//To create a function to do this:function h2d(h) {return parseInt(h,16);}
How to convert decimal to Hexadecimal in Javascript?
There is a simple for to do this:
var d = 20d.toString(16);
If you want to create a function, below is an example:
function d2h(d) {return d.toString(16);}
17 de fev. de 2011
Assinar:
Postagens (Atom)