Base: 16

The hexadecimal (base-16) numeral system uses sixteen symbols: the digits 0–9 and the letters A–F (representing values 10–15).

How it works

1A3 = 1×256 + 10×16 + 3×1 = 419

Digits

0 1 2 3 4 5 6 7 8 9 A B C D E F

Uses

Hexadecimal is ubiquitous in computing. Memory addresses, color codes in CSS (#E94560), MAC addresses, and file hashes all use hex because each hex digit maps to exactly four binary digits, making it a compact and human-readable representation of binary data.