Tested tool guide
Tested browser tools
Checked August 16, 2026
What Hex Dump Viewer does, with a checked example
A Hex Dump Viewer exposes a file as ordered byte values instead of relying on its filename extension or a text decoder. It presents hexadecimal bytes beside an ASCII representation, supports pattern searches, and helps reveal recognizable file signatures. The ASCII side is only a reading aid: it cannot faithfully display arbitrary binary data or multibyte text, so base conclusions on the hexadecimal values. File inspection happens in the browser, and the selected bytes are not uploaded.
Worked example
A concrete input and expected output from the current implementation.
Input
A two-byte file containing exactly the ASCII text Hi, with no newline or byte-order mark.
->
Expected output
At offsets 0 and 1, the hexadecimal byte values are 48 and 69. The ASCII representation is Hi.
ASCII H has decimal value 72, which is hexadecimal 48. ASCII i has decimal value 105, which is hexadecimal 69.