RevealTheme logo

16진수에서 2진수로 변환기

16진수를 2진수로 변환합니다. 각 16진수 자릿수는 정확히 4자리의 2진수로 확장됩니다.

이 도구 사용 방법

  1. 1

    Type or paste a hex value into the input box, for example 1A2B or 0x1A2B.

  2. 2

    An optional leading 0x and any spaces are removed automatically before conversion.

  3. 3

    Read the binary result below the box, shown as 4-bit groups separated by spaces.

  4. 4

    If the box stays empty, check your input contains only the digits 0-9 and letters A-F.

16진수에서 2진수로 변환기란 무엇인가요?

16진수에서 2진수로의 변환은 자릿수 단위의 치환입니다: 0 → 0000, F → 1111 등의 방식입니다. 결과는 읽기 쉽도록 니블(4비트 블록)로 그룹화됩니다. 메모리 주소, 색상 값, 기계어 명령을 그 기본 비트 패턴으로 읽는 데 유용합니다.

일반적인 사용 사례

  • Decoding a hex color like FF8800 into its red, green, and blue bit patterns when working on a design or shader.

  • Inspecting the binary layout of a memory address or register value printed by a debugger.

  • Teaching or learning how each hex digit corresponds to a 4-bit nibble in a computer-science class.

  • Checking the bit pattern of a hardware flag or bitmask defined in hex in firmware or driver code.

  • Translating a hex opcode or byte from a disassembly into binary to read individual instruction fields.

  • Verifying that a hex constant in a config file expands to the bit pattern you expect before committing it.

관련 도구