SHA-512/256 Hash Generator
Free online SHA-512/256 hash generator. Compute SHA-512/256 digests for text and files instantly in your browser.
Text mode — hashes your input as UTF-8 characters
Best for strings, passwords, JSON, and code. Need to verify a download against a published checksum? Switch to and drop the file in — text mode cannot reproduce a file checksum.
Enter text above to generate SHA-512/256 hash
Text encoded as UTF-8 · All processing is local
Related Hash Generators
Need all algorithms at once? Open the full Hash Generator for every supported algorithm.
What is SHA-512/256?
SHA-512/256 is a truncated SHA-512 variant producing a 256-bit digest. Defined in FIPS 180-4, it uses SHA-512 internals with distinct initialization values. It provides a 256-bit output alternative to SHA-256 within the SHA-512 design family.
Common use cases:
- NIST FIPS-compliant hashing profiles
- Validating SHA-512/256 in crypto implementations
- Specialized protocols specifying this variant
- Cross-checking truncated SHA-512 digests
Examples
| Input | SHA-512/256 Hash |
|---|---|
| Eazytools4u | a6bec78727626ca9011761a2c3d23abebbd4f52ce7a837580f5fe5ed1e6f6433 |
| abc | 53048e2681941ef99b2e29b76b4c7dabe4c2d0c634fc6d46e0e2f13107e7af23 |
| hello | e30d87cfa2a75db545eac4d61baf970366a8357c7f72fa95b52d0accb698f13a |
Programming Examples
const crypto = require("crypto");
const hash = crypto.createHash("sha512-256")
.update("hello", "utf8")
.digest("hex");
console.log(hash); // SHA-512/256 hex digestimport hashlib
digest = hashlib.sha512_256(b"hello").hexdigest()
print(digest) # SHA-512/256 hex digestecho -n "hello" | openssl dgst -sha512-256 -hexFrequently Asked Questions
SHA-512/256 vs SHA-256 — same output?
No. They both produce 256-bit digests but use different algorithms. The hashes will differ for the same input.
Why use SHA-512/256 instead of SHA-256?
Only when a standard or system explicitly requires SHA-512/256. SHA-256 is far more common in practice.
Can I verify file checksums?
Yes, if the publisher provides SHA-512/256 checksums. Use File mode for binary file hashing.
Is computation private?
Yes. Everything runs locally in your browser.