The American Standard Code for Information Interchange(ASCII). The Free Table Online Reference
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);}
var h = 'FE';
d = parseInt(h,16);
//To create a function to do this:
function h2d(h) {return parseInt(h,16);}
Nenhum comentário:
Postar um comentário