SHA-512/224 Hash Generator
Free online SHA-512/224 hash generator. Compute SHA-512/224 truncated 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/224 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/224?
SHA-512/224 is a truncated variant of SHA-512 defined in FIPS 180-4. It produces a 224-bit digest while using the SHA-512 compression function with different initial values. It is part of the SHA-2 family for applications that need a 224-bit output with SHA-512 internals.
Common use cases:
- FIPS-compliant systems specifying SHA-512/224
- Cryptographic library test vector validation
- Protocols requiring truncated SHA-512 variants
- Security audits referencing NIST SHA-2 profiles
Examples
| Input | SHA-512/224 Hash |
|---|---|
| Eazytools4u | fcd5af3ee754c57c3b33e20202093b77619c98a4f96a2045e7d3522f |
| abc | 4634270f707b6a54daae7530460842e20e37ed265ceee9a43e8924aa |
| hello | fe8509ed1fb7dcefc27e6ac1a80eddbec4cb3d2c6fe565244374061c |
Programming Examples
const crypto = require("crypto");
const hash = crypto.createHash("sha512-224")
.update("hello", "utf8")
.digest("hex");
console.log(hash); // SHA-512/224 hex digestimport hashlib
digest = hashlib.sha512_224(b"hello").hexdigest()
print(digest) # SHA-512/224 hex digestecho -n "hello" | openssl dgst -sha512-224 -hexFrequently Asked Questions
How is SHA-512/224 different from SHA-224?
Both produce 224-bit digests but use different internal structures. SHA-224 is based on SHA-256; SHA-512/224 is based on SHA-512. They produce different hashes for the same input.
When is SHA-512/224 used?
It appears in NIST standards and some specialized protocols. Most general applications use SHA-256 or SHA-512 instead.
Is this algorithm secure?
Yes. It inherits the security properties of SHA-512 with a truncated output.
Does File mode upload my data?
No. File hashing is performed entirely in your browser.