[---------------------------------------------------] Binary, Denary, Hexadecimal and Octal Written By Xinapse For iExploit.org [---------------------------------------------------] -------[Denary The numbers in normal use are called denary or base 10, this system uses ten digits, 0,1,2,3,4,5,6,7,8,9 each digit is worth 10 times more than the one to its right, eg 365 would be 100 10 1 3 6 5
-------[Binary The binary system uses just two digits 1 and 0 on and off, each digit is worth two times the number to the right. eg 73 would be 128 64 32 16 8 4 2 1 0 1 0 0 1 0 0 1
-------[Hexadecimal The hexadecimal number system uses 16 digits, (base 16) 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F, each digit is worth 16 times more than the digit to the right, eg 360 would be 4096 256 16 1 0 1 6 8
-------[Octal The octal number system uses 8 digits, 0,1,2,3,4,5,6,7 each digit is 8x more than the number to its right, so 112 would be. 64 8 1 1 6 0