Hex/Binary Converter

Convert between hexadecimal, binary, decimal, and ASCII formats. Handle endianness and bit operations for embedded systems and IoT development.

Conversion Mode

Input

Converted Values

Hexadecimal
-
Binary
-
Decimal
-
ASCII Text
-
Unsigned Integer
-
Signed Integer
-

Bit Visualization

Enter a value to see bit breakdown

Quick Examples

About Endianness

Endianness refers to the order in which bytes are arranged in multi-byte data types.

Big Endian (Network Byte Order)

Most Significant Byte (MSB) is stored first. Used in network protocols and some processors like Motorola.

Example: 0x12345678 → [12] [34] [56] [78]

Little Endian (Host Byte Order)

Least Significant Byte (LSB) is stored first. Used in x86/x64 processors and many embedded systems.

Example: 0x12345678 → [78] [56] [34] [12]