One hash page covers the digests developers reach for in fixtures and integrity checks. Choose SHA-256, SHA-512, MD5, HMAC, or bcrypt-style output in Mode and hash text in your browser.
About Hash Generator
Checksums confirm a string did not change between systems. SHA-256 remains a common default; older MD5 and SHA-1 still appear in legacy fixtures and file manifests.
HMAC mode adds a secret key for keyed message authentication samples. Bcrypt-style output helps when a form or docs need a placeholder password hash shape.
Prefer purpose-built libraries in production. This hub is for quick digests while building tests and docs—not for storing real user passwords.
How to Use Hash Generator
- Paste the text to hash.
- Select the algorithm under Mode (use HMAC secret when required).
- Run the generator.
- Copy the digest into your fixture or ticket.
For password storage in real apps, use your framework’s password hasher—not a quick online digest demo.