Tested tool guide
Tested browser tools
Checked August 16, 2026
What SHA-3 Hash Generator does, with a checked example
Paste any text and this tool returns its SHA-3 fingerprint as a fixed-length hexadecimal string, in any of the four NIST-standardized sizes: SHA3-224, SHA3-256, SHA3-384, and SHA3-512. The computation runs entirely in your browser over the exact characters you type, so the same input always produces the same digest. What surprises most people: SHA3-256 is not the same as Keccak-256, the variant Ethereum uses. The two differ in padding: SHA-3 appends a domain-separation byte of 0x06, Keccak-256 one of 0x01. That split was settled during the SHA-3 competition, before NIST's standard, so they produce different digests for identical input.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
3a985da74fe225b2045c172d6bd390bd855f086e3e9d525b46bfe24511431532
abc is one of the official test strings in FIPS 202; its SHA3-256 digest is fixed at 64 hex characters (256 bits). Any conforming SHA-3 implementation must return this exact value.