Skip to main content
Numverto logo NUMVERTO

Hexadecimal to Binary Converter

Convert Hexadecimal to Binary

Binary Result

Step-by-Step Working

    Advertisement

    About This Converter

    Convert any hexadecimal number to its binary equivalent by expanding each hex digit into 4 bits. Type a hex value like FF and instantly get 11111111 with the nibble expansion shown. Used daily by programmers inspecting memory dumps, network packets, and machine code.

    Worked Examples

    Hexadecimal: FF → Binary: 11111111

    F=1111, F=1111 → 11111111

    Hexadecimal: 4A → Binary: 1001010

    4=0100, A=1010 → 01001010 (leading zero dropped)

    Hexadecimal: 1F4 → Binary: 111110100

    1=0001, F=1111, 4=0100 → 000111110100 → 111110100 = 500 decimal

    Need More Bases?

    For full multi-base conversion (binary, octal, decimal, and hex all at once), use our Number System Converter — it shows all four representations simultaneously with complete step-by-step working.

    Frequently Asked Questions

    How do I convert hex to binary?

    Replace each hex digit with its 4-bit binary equivalent: 0=0000, 1=0001, ..., 9=1001, A=1010, B=1011, C=1100, D=1101, E=1110, F=1111.

    What is hex A in binary?

    Hex A = decimal 10 = binary 1010.

    Can hex letters be lowercase?

    Yes — a-f and A-F are equivalent. Our converter accepts both.

    How many bits does one hex digit represent?

    Exactly 4 bits (one nibble). Two hex digits = one byte (8 bits).

    What is 0x prefix in programming?

    0x is a convention marking a hexadecimal literal (e.g., 0xFF = 255). Our tool accepts input with or without the 0x prefix.

    Related Converters

    Advertisement

    Popular Tools

    View all 13 free tools → · Read tutorials · Number system guide