Maintaining AMELogbook takes time and fuel. If this tool helps your daily work, consider buying me a coffee!
Secure payment via Stripe or PayPal
Convert binary numbers to hexadecimal (and vice versa) quickly and accurately. Essential for avionics troubleshooting, ARINC 429 data decoding, and digital system maintenance. Supports 8-, 16-, 32-bit formats with real-time validation.
1111 0000 or A3 F1) — spaces are auto-removed.
In modern aircraft, digital systems communicate using binary data. Maintenance engineers often need to:
0x131 = Mach Number)10110101 = specific LRU fault)| Bits | Binary | Hex | Decimal Range |
|---|---|---|---|
| 4-bit Nibble | 1111 |
F |
0-15 |
| 8-bit Byte | 10101100 |
AC |
0-255 |
| 16-bit Word | 1111000011110000 |
F0F0 |
0-65,535 |
| 32-bit DWord | 11111111... |
FFFFFFFF |
0-4,294,967,295 |
0x4A3, an AME can convert this to binary to see exactly which individual "status bits" are set to 1 (indicating a specific sub-component failure).
0x prefix is a standard convention in programming and aviation manuals to indicate that the following number is in Hexadecimal. For example, 0x10 is actually 16 in decimal, while 10 without the prefix would just be ten.