contents   index   previous   next



Hexadecimal

 

Hexadecimal notation uses base 16 digits from the sets of 0-9, A-F, and a-f. These digits are preceded by 0x. ScriptEase is not case sensitive when it comes to hexadecimal numbers. Examples are:

 

0x1, 0x01, 0x100, 0x1F, 0x1f, 0xABCD

var a = 0x1b2E;

 


Octal