Hex Dump Viewer helps developers inspect raw byte values, control characters, signatures, and binary-looking data. It is a browser-based utility for quick low-level debugging.
Drop any file here or click to browse
Shows the first 64 KB as a hex dump
Yes. The tool is free and runs directly in your browser with no account required.
No. Your file is read with the browser's local FileReader API — it is never uploaded to a server.
The first 64 KB (65,536 bytes) of any file. Files larger than that are truncated, with a notice shown above the output.
The classic hex editor layout: an 8-digit hex offset, 16 space-separated hex byte values per row, and an ASCII preview column where non-printable bytes are shown as dots.
Yes — any file can be dropped in, since it's read as raw bytes rather than parsed as a specific format. This makes it useful for binary files, executables, and unknown file types alike.
To identify a file's true format via its magic-number signature (the first few bytes), spot embedded strings or control characters, or debug a file that isn't opening correctly in its expected application.
The tool doesn't include a dedicated search feature — use your browser's built-in page search (Ctrl/Cmd+F) to look for specific hex values or ASCII text within the output.