Skip to tool
Systems

Number Base & Byte Inspector

Translate integer bases, signed widths, byte order, and floating-point bits.

Web Worker Local onlyTools
Input0 characters
Result0 characters
Ready

Memory interpretation lab

The digits are data. Width and type give them meaning.

The same 32 bits can be an unsigned integer, a negative two’s-complement value, four ordered bytes, or an IEEE-754 float. State the interpretation before trusting the number.

Decimal

3,735,928,559

Hex

0xDEADBEEF

Binary · 32-bit

1101 1110 1010 1101 1011 1110 1110 1111

Bytes

DE AD BE EF

01 · Width before meaning

One bit pattern, two integer readings

8-bit16-bit32-bit64-bit

Unsigned

3,735,928,559

Signed · two’s complement

−559,038,737

Sign bit

31 · set

Unsigned max

4,294,967,295

Selecting a smaller width may discard high bits. DevSexy labels that truncation instead of silently changing the value.

02 · Address-by-address memory

Endianness reorders bytes, never the bits inside a byte.

+00+01+02+03
Big endian · MSB at the lowest addressDEADBEEF
Little endian · LSB at the lowest addressEFBEADDE

03 · IEEE-754 single precision anatomy

Interpret the same 32 bits as a floating-point value

S

1

Exponent

10111101

Fraction

10110101101111011101111

ZeroSubnormalNormalInfinityNaN
Class
Normal
Unbiased exponent
62
Significand
1.fraction
Value
≈ −6.2599 × 10¹⁸

04 · Practical reading recipes

Start from the format contract, not from a plausible-looking result.

Packet / hex dump

Locate field bytes → read the protocol width → apply the declared order → interpret signedness

Debugger watch

Copy bytes at increasing addresses → choose the C type width → compare logical and memory views

Modbus registers

Confirm register order separately from byte order; 32-bit devices may use mixed word layouts

Float sensor

Read exactly 4 or 8 bytes → apply wire order → decode IEEE-754 → check special classes

Direct answer

What is Number Base & Byte Inspector?

Inspect one value across bases, signed widths, byte order, and IEEE-754 fields with exact integer conversion and explicit interpretation choices.

What can it do?

  • Convert
  • Float bits

How to use Number Base & Byte Inspector

  1. 01

    Choose a task

    Select Convert and Float bits in the workspace.

  2. 02

    Provide the input

    Enter a number or byte sequence. The input stays in the browser processing path.

  3. 03

    Review the result

    Run the tool, inspect its result and diagnostics, then copy or download the output when the page offers that action.

Frequently asked questions

What is Number Base & Byte Inspector?
Inspect one value across bases, signed widths, byte order, and IEEE-754 fields with exact integer conversion and explicit interpretation choices.
What can Number Base & Byte Inspector do?
Number Base & Byte Inspector supports Convert and Float bits. Each mode is available directly in the page workspace.
Does Number Base & Byte Inspector upload my data?
Number Base & Byte Inspector processes your input locally in the browser. DevSexy does not add an upload, account, or server-processing step to this workflow.
DevSexy processes tool input locally. No paste tracking, accounts, or upload step.