ToolsCrateAll tools

Hex Viewer

Inspect any file byte by byte, with a familiar offset, hex and ASCII layout. Search for a value you can see in-game to find where it lives in the file.

Intended for your own single-player save files. Editing saves in multiplayer or online games breaks their terms of service and can get your account banned. Always keep a backup of the original file before you change anything.

A read-only viewer: it will not modify your file. Searching for a value you can see in-game — a gold amount, a character name — is the usual way to find where it lives in a save.

Frequently Asked Questions

How do I find a value like my gold amount?

Search for it as text if the save is text-based. For binary saves, convert the number to hex and search in hex mode — remember that most formats store numbers little-endian, so 1000 (0x3E8) appears as e8 03 rather than 03 e8.

What does the ASCII column show?

Each byte rendered as a character where it is printable, and a dot where it is not. It is the fastest way to spot embedded strings, field names and headers inside otherwise unreadable data.

Can I edit bytes here?

No, this is a read-only viewer — it will not modify your file. Use it to understand a format and locate values, then make edits in a dedicated hex editor.

Why is my file shown in pages?

Rendering a million rows at once would freeze the browser. Pages of 512 bytes keep it responsive; use the offset box or a search result to jump straight to the part you care about.