Computer's Comprettyran
HEXADECIMAL NUMBER SYSTEM

Home

NUMBER SYSTEM | DECIMAL NUMBER SYSTEM | BINARY NUMBER SYSTEM | OCTAL NUMBER SYSTEM | HEXADECIMAL NUMBER SYSTEM

 The Hexadecimal Number System 
            - The hexadecimal number system (base 16) uses 16 different symbols, 0, 1, 2, 3, 4, 5, 6, 7,8, 9, A, B, C, D, E, and F to represent numbers. Its a place value system.

            dec     hexadec                           dec                    hexadec

0                    0                                    11                        B

1                    1                                    12                        C

2                    2                                    13                        D

3                    3                                    14                        E

4                    4                                    15                        F           

5                    5                                    16                        10

6                    6                                    17                        11

7                    7                                    18                        12

8                    8                                    19                        13

9                    9                                    20                        14

10                A                                    21                        15

 Converting to Hexadecimal to Decimal

 8716

            =8x161 + 7x160

            =128 + 7

            =13510

 3416

            =3x161 + 4x160

            =48 + 4

            =5210

 10216

            =1x162 + 0x161 + 2x160

            =256 + 0 + 2

            =25810

 2D416

            =2x162 + 14x161 + 4x160

            =512 + 214 + 4

            =73010

 AB316

            =10x162 + 11x161 + 3x160

            =2560 + 176 + 3

            =273910

Converting Hexadecimal to Binary

Converting Hexadecimal to Octal