Hexadecimal Representation
Aligned to the AQA 8525 specification
- Level
- Intermediate
- Reading time
- 6 min
- Published
- 2 June 2026
- Updated
- 1 July 2026
On this page
Key takeaways
- Hexadecimal is a base-16 number system using the digits 0-9 followed by A-F, where A-F represent the denary values 10 to 15 in a single character.
- Hex is used in computing because every 4 binary bits map exactly to one hex digit, making binary-to-hex conversion lossless with no rounding.
- A is the first letter after the digits and equals 10, not 11; each later letter adds one, so B=11, C=12, D=13, E=14, and F=15.
- To convert denary to hex, divide repeatedly by 16, recording remainders, then read the remainders bottom to top, replacing any 10-15 with its letter.
- When converting binary to hex, always pad each group to a full 4-bit nibble, because writing 3 bits instead of 4 shifts every digit and gives a wrong result.
How much of this have you taken in?
Quiz yourself on this section, free, no card needed.
Key terms
- Hexadecimal
- A base-16 number system using the sixteen digits 0-9 and A-F.
- Base-16
- A number system with sixteen possible digits, where each place value is a power of 16.
- Nibble
- A group of 4 binary bits, which corresponds exactly to one hexadecimal digit.
- Division-by-16 method
- Converting denary to hex by repeatedly dividing by 16 and reading the remainders bottom to top.
- Nibble-split method
- Converting binary to hex by splitting the binary into 4-bit groups from the right and converting each group to a hex digit.
- Place value
- The weight of a digit's position; in hex the place values are 1, 16, 256, each a power of 16.
Frequently asked questions
Because every 4 binary bits map exactly to one hex digit, so hex is a compact, lossless shorthand for long binary strings. A 32-bit memory address is hard to read and error-prone in binary, but short and clear in hex, with no rounding or information loss.
A equals 10 in denary, not 11. The letters begin where the single digits end: after 9 comes A=10, then B=11, C=12, D=13, E=14, and F=15. Treating A as 11 is the most common error.
Use the division-by-16 method: divide the number by 16 repeatedly, recording the remainder each time, then read the remainders bottom to top. Replace any remainder of 10 to 15 with its letter. For example, 174 gives remainders 14 (E) then 10 (A), reading bottom to top as AE.
Generate revision on any topic you study
Type any topic you're studying and Aicademy generates a complete lesson, quiz, and flashcard set, personalised to your level.
Lessons on anything
Structured, level-matched lessons on any topic you study
Practice quizzes
Find out what you actually know before the exam does
Flashcard sets
Lock in key concepts with instant revision cards
Ask Aica
Stuck on something? Get a clear explanation, any time
Binary Numbers and Denary Conversion
Units of Information: Bits, Bytes and Beyond
Related lessons
6 min