SHA-2 Hash
Generate a SHA-2 hash from any text in your browser. Pick from SHA-224, SHA-256, SHA-384, or SHA-512 — all part of the SHA-2 family standardised by NIST in FIPS 180-4. Uses the native crypto.subtle API — no upload, no server round-trip.
Text in, SHA-2 out
Every input maps to a fixed 256-bit digest (64 hex characters). Changing one byte randomises the entire output.
Hello, world!
315f5bdb76d078c43b8ac0064e4a0164612b1fce77c869345bfc94c75894edd3
What you will use SHA-2 for
SHA-2 fingerprints data so you can detect changes, verify integrity, and build authenticated protocols.
Security audits
Verify that a file you downloaded matches the official checksum.
API authentication
Many APIs sign requests with SHA-2 or HMAC-SHA-2.
File integrity
Detect corruption or tampering across storage and transport.
Tokens & IDs
Build deterministic IDs from input data using SHA-2.
How to generate a SHA-2 hash
Paste your text
Drop any text — UTF-8 is handled automatically.
Set options
Pick lowercase or uppercase and the SHA-2 variant.
Click Generate
Or leave auto-hash on for live updates.
Copy or download
Grab the 64-char hex digest.
Frequently asked questions
SHA-2 processes input through the Merkle-Damgård construction, producing a fixed 256-bit digest. It is deterministic and one-way.
Yes — SHA-2 is part of the SHA-2 family (FIPS 180-4). No practical preimage or collision attacks are known as of 2026.
No — hashes are one-way. Short or common inputs may be found in rainbow tables, but there is no general decryption.
Usually whitespace, trailing newlines, or line endings (LF vs CRLF). Also confirm both tools UTF-8 encode the input.
Yes. No signup, no limits, no ads. Everything runs entirely in your browser.
About SHA-2 hashing
SHA-2 is a cryptographic hash function family standardised by NIST in FIPS 180-4. It compresses arbitrary input into a fixed 256-bit digest, or one of 224 / 256 / 384 / 512 bits depending on variant.
Properties
- Deterministic — same input always produces the same digest.
- Fixed-size output — 256 bits / 64 hex characters.
- Avalanche — changing one input bit randomises about half the output bits.
- Hardware-accelerated in modern browsers via the Web Crypto API.
When to use which
- SHA-256 — the default for most modern protocols (TLS, JWT, Bitcoin).
- SHA-384 / SHA-512 — when you want a longer digest or run on 64-bit-heavy hardware.
- HMAC-SHA-* — for authenticated messages with a shared secret key.