ตัวแปลง ไบนารี เป็น Hex
แปลงตัวเลข ไบนารีใดๆ เป็นรูปแบบฐานสิบหกของมัน. รองรับช่องว่าง, จัดการอักขระที่ไม่ถูกต้อง, และให้ผลลัพธ์ทันที.
ผลลัพธ์ Hex
ตัวอย่าง: ทวิภาคฐาน 2 เป็นฐานสิบหก
- ทวิภาคฐาน 2:
01001000 01100101
ฐานสิบหก:48 65
"01001000 01100101" = 48 65 (H E) - ทวิภาคฐาน 2:
110011
ฐานสิบหก:33
วิธีการแปลงจากทวิภาคฐาน 2 เป็นฐานสิบหก
- เขียนหรือวางตัวเลขทวิภาคฐาน 2 (เฉพาะ 0 และ 1 เท่านั้น)
- แบ่งตัวเลขทวิภาคฐาน 2 เป็นกลุ่มของ 4 บิต (เพิ่มเลข 0 ด้านหน้าตามความจำเป็น)
- แปลงแต่ละกลุ่ม 4 บิตเป็นเลขฐานสิบหก
- รวมเลขฐานสิบหกทั้งหมดเข้าด้วยกัน
ตาราง ทวิภาคฐาน 2 เป็นฐานสิบหก
Binary (4-bit) | Hex |
---|---|
0000 | 0 |
0001 | 1 |
0010 | 2 |
0011 | 3 |
0100 | 4 |
0101 | 5 |
0110 | 6 |
0111 | 7 |
1000 | 8 |
1001 | 9 |
1010 | A |
1011 | B |
1100 | C |
1101 | D |
1110 | E |
1111 | F |
What is Binary? Why Convert to Hex?
Binary uses only 0 and 1. It's the native language of computers. Hexadecimal makes binary shorter and easier to read for humans. For example, a byte (8 bits) in binary is two hex digits (e.g. 01001000 = 48).
FAQ
- How many bits is a hex digit?
One hex digit equals 4 binary bits. - What if my binary number has spaces?
No problem! The tool ignores spaces and other non-binary characters. - What is binary used for?
All digital data and computers operate in binary.