Generate cryptographic hashes of any text using your browser's native Web Crypto API. Useful for checksums, fingerprints and integrity verification.
Getting started
Type or paste the text you want to hash.
All supported algorithms compute simultaneously as you type.
Copy the digest you need in lower-case hexadecimal.
Compare against a published checksum to verify integrity.
Why it helps
Uses the browser's native Web Crypto implementation, which is both fast and correct.
Computes every algorithm at once so you can compare against whichever a source publishes.
Updates live, making it easy to see how a single character changes the entire digest.
Fully local — the input never leaves your device.
In practice
Verifying a downloaded file's published checksum matches what you received.
Generating a deterministic cache key or content fingerprint.
Demonstrating the avalanche effect when teaching how hashing works.
Producing a stable identifier from a string without storing the original.
Everything people ask most about the hash generator, answered plainly.
Keep exploring
More from Developer Tools and beyond — most people who use this one reach for these next.