Hash
Get the CRC32 checksum of any text as you type — hex and decimal shown side by side.
Checksum calculation runs locally in your browser. Nothing is uploaded, logged, or stored.
CRC32 is a cyclic redundancy check — a tiny, extremely fast error-detecting code used by ZIP archives, PNG images, Ethernet frames, and many file formats. It catches accidental corruption brilliantly, but it is not a cryptographic hash: collisions are trivial to craft, so never use it for security decisions. For that, reach for SHA-256 or MD5 instead.
The implementation is the standard CRC-32/ISO-HDLC variant (polynomial 0xEDB88320, reflected, XOR-out 0xFFFFFFFF) — the same one used by ZIP and PNG — computed with a table-driven approach for speed.
Reproduce the CRC values you see in archive listings and image chunk headers.
Use CRC32 as a fast fingerprint to detect accidental edits in configuration snippets.
Compute the MD5 digest of any text instantly, in your browser. Hex output with uppercase toggle.
Compute SHA-256 digests with the browser's native WebCrypto — fast and private.
Compute SHA-512 digests locally with WebCrypto — 512-bit output as hex.
Describe what you want to match and get a working regular expression with explanations and examples.
Looking for something else? Browse all tools