We use base 10 (decimal) every day. Decimal numbers are created by selecting digits from the ten digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9. Placing these digits in columns of differing value allows you to create every possible integer. The columns are assigned values that correspond to the powers of 10. Below is an illustration of how the base 10 system works for integers.

...104103102101100
...10,000's1,000's100's10's1's
4175

The digits 4175 are interpreted as 4 thousands, 1 hundred, 7 tens, and 5 ones.

Similar number representations can be created using other base systems as well. For example, base 2 (binary) uses the digits 0 and 1. The column values are generated by calculating powers of 2 as illustrated below.

...2423222120
...16's8's4's2's1's
11010

The digits 11010 are interpreted as 1 sixteen, 1 eight, 0 fours, 1 two and 0 ones. This base 2 number is equivalent to 26 in base 10. This can be expressed using the notation 110102 = 2610.

A similar system is used to create base 16 (hexadecimal) numbers. The hexadecimal digits are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F. The column values are illustrated below.

...164163162161160
...65536's4096's256's16's1's
A3F

The digits A3F are interpreted as 10 two-fifty-sixes's, 3 sixteens, and 15 ones. This base 16 number is equivalent to 2623 in base 10. This can be expressed using the notation A3F16 = 262310.