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 = 20
d.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

Japanese Table

Alphabetic Presentation Forms Table

Private Use Area Table

Miscellaneous Symbols Table

Geometric Shapes Table

Block Elements Table

Box Drawing Table

Miscellaneous Technical Table

Mathematical Operators Table

Arrows Table

Number Forms

Letterlike Symbols Table

Currency Symbols Table

Superscripts and Subscripts Table

Greek Extended Table

General Punctuation Table

Latin Extended Additional Table

Cyrillic Table

Greek Table

Spacing Modifier Letters Table

IPA Extensions Table

Latin Extended-B Table

Latin Extended-A Table

Latin-1 Supplement Table