Hex Fraction to Binary Converter
Convert a hexadecimal fraction to binary instantly. Enter values such as A.F, 0.1, 2.BC, or FF.8 and get the exact binary value together with a digit-by-digit 4-bit mapping.
Hex Fraction to Binary Converter
The Hex Fraction to Binary Converter converts hexadecimal values containing a fractional part into their exact binary equivalent. A hexadecimal fraction contains digits on either side of a radix point, such as A.F, 3.8, 0.25, or FF.C.
Because hexadecimal is base 16 and binary is base 2, each hexadecimal digit maps directly to a group of four binary bits. This makes hexadecimal fraction conversion particularly simple and exact.
How to Convert a Hex Fraction to Binary
Convert each hexadecimal digit independently using its four-bit binary equivalent. Keep the radix point in exactly the same position between the corresponding digit groups.
There is no need to repeatedly multiply the fractional portion by two as you would when converting a decimal fraction to binary.
Hexadecimal to Binary Digit Mapping
Every hexadecimal digit corresponds to one four-bit binary nibble. The same mapping applies whether the hexadecimal digit appears before or after the radix point.
| Hex | Binary | Decimal | Hex | Binary | Decimal |
|---|---|---|---|---|---|
| 0 | 0000 | 0 | 8 | 1000 | 8 |
| 1 | 0001 | 1 | 9 | 1001 | 9 |
| 2 | 0010 | 2 | A | 1010 | 10 |
| 3 | 0011 | 3 | B | 1011 | 11 |
| 4 | 0100 | 4 | C | 1100 | 12 |
| 5 | 0101 | 5 | D | 1101 | 13 |
| 6 | 0110 | 6 | E | 1110 | 14 |
| 7 | 0111 | 7 | F | 1111 | 15 |
Example: Convert 2.BC to Binary
Convert each hexadecimal digit to four binary bits.
The unnecessary integer-side leading zeros can be removed. The fractional binary groups remain aligned with their original hexadecimal positions.
Common Hex Fraction to Binary Values
| Hex Fraction | Binary Equivalent |
|---|---|
| 0.1 | 0.0001 |
| 0.2 | 0.0010 |
| 0.4 | 0.0100 |
| 0.8 | 0.1000 |
| 1.A | 1.1010 |
| 2.BC | 10.10111100 |
| A.F | 1010.1111 |
| F.5 | 1111.0101 |
| 10.25 | 10000.00100101 |
| FF.8 | 11111111.1000 |
Why Hexadecimal Fractions Convert Exactly to Binary
The conversion is exact because hexadecimal and binary have a power-of-two relationship.
This relationship continues after the radix point. For example, the first hexadecimal fractional position has a weight of 16-1, while four binary fractional positions represent the same subdivision.
Why Fractional Binary Zeros Matter
Zeros after the binary radix point can be important because they determine positional value. Hexadecimal 0.1 does not convert to binary 0.1.
Binary 0.1 represents one-half, whereas hexadecimal 0.1 represents one-sixteenth. For this reason, the calculator preserves the complete four-bit mapping of every hexadecimal fractional digit.
Hexadecimal Integer vs Fractional Positions
Digits to the left of the hexadecimal point use non-negative powers of sixteen. Digits to the right use negative powers.
When converted to binary, every one of these hexadecimal positions expands into exactly four binary positions.
Where Hexadecimal Fractions Are Used
Hexadecimal fractional notation is useful whenever binary-aligned values must be represented more compactly.
- Computer arithmetic and numerical analysis.
- Low-level programming and debugging.
- Fixed-point binary systems.
- Floating-point investigation.
- Embedded software and digital hardware.
- Computer architecture education.
- Binary data inspection.
- Technical documentation involving base-16 numbers.
Common Hex Fraction Conversion Mistakes
- Removing zeros immediately after the binary point.
- Moving the radix point after conversion.
- Using fewer than four bits for an internal hexadecimal digit.
- Treating A through F as decimal characters rather than hexadecimal digits.
- Using decimal fraction conversion rules unnecessarily.
- Dropping fractional zeros that determine binary positional value.
- Confusing ordinary hexadecimal fractions with IEEE 754 bit-pattern decoding.
Hex Fraction to Binary FAQs
How do I convert a hexadecimal fraction to binary?
What is 0.1 hexadecimal in binary?
What is A.F hexadecimal in binary?
Why does one hexadecimal digit equal four binary digits?
Can hexadecimal fractions be represented exactly in binary?
Does the converter accept lowercase hexadecimal letters?
Can I enter 0x before the hexadecimal value?
Why is hexadecimal 0.1 not binary 0.1?
Should binary zeros after the radix point be removed?
Is this the same as converting IEEE 754 hexadecimal?
Convert Hex Fractions to Binary Online
Enter a hexadecimal fraction in the calculator above and select Convert to Binary. The calculator validates the input, converts each hexadecimal digit into four binary bits, preserves the fractional positions, and displays both the complete binary result and the individual digit mapping.