How to use
- Type or paste your input (text, JSON, anything UTF-8).
- Pick the algorithm — SHA-256 is the safe default.
- The output updates as you type. Copy with one click.
When to use which
- SHA-256 / SHA-512 — file fingerprints, content integrity, signing.
- SHA-1 — legacy compatibility (Git uses it for object IDs). Avoid for new systems.
- MD5 — checksums for trusted data only. Never for security.
Privacy
SHA hashes are computed via crypto.subtle.digest. MD5 uses a pure-JavaScript implementation embedded in this page. Nothing is transmitted. Open DevTools → Network and verify: zero requests when you hash.