Allow me to build on jdMorgan's post.
Hexadecimal is comparable to the decimal system, with one major difference.
Decimal consists of ten numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9
Hexadecimal consists of sixteen: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F
(A = 10
B = 11
C = 12
D = 13
E = 14
F = 15)
So, let's take the hexadecimal value #c0d3fc
Split it up into it's component parts:
c0 - d3 - fc
c0 = ((12 * 16) + 0) = 192
d3 = ((13 * 16) + 3) = 211
fc = ((15 * 16) + 12) = 252
So, the following 2 are, for all intents and purposes, identical:
#c0d3fc
R:192, G:211, B:252