Verify a PNG signature
Input: screenshot.png
Output: Offset 0 shows 89 50 4E 47 0D 0A 1A 0A — the canonical PNG magic number, confirming the file is a real PNG.
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Inspect any file as a hex + ASCII dump in your browser
Hex & Binary Viewer on UtilityKit shows the raw bytes of any file as a clean hex + ASCII dump, the same way Vim's xxd or Linux's hexdump -C presents them. Drop a file (up to 100 MB) and the tool renders 16 bytes per line with the offset on the left, hex pairs in the middle, and printable-ASCII characters on the right. Files are read entirely in your browser via the File API — nothing is uploaded, nothing leaves your device. The viewer auto-detects common magic numbers (PNG, JPEG, PDF, ZIP/Office, GZIP, 7z, RAR, ELF, MZ/PE, MP3, FLAC, RIFF) and shows the detected format alongside the file size. Pagination keeps large files responsive — 16 KB per page — and a search box accepts hex byte sequences (89 50 4e 47) or text strings, jumping straight to the first match. Useful for debugging file format issues, identifying truncated downloads, or reverse-engineering binaries.
Input: screenshot.png
Output: Offset 0 shows 89 50 4E 47 0D 0A 1A 0A — the canonical PNG magic number, confirming the file is a real PNG.
Input: firmware.bin (12 MB)
Output: Search for 'https://' jumps to offset 0x14C2A0 where the firmware embeds a status callback URL.