Hash generator
Use the browser's Web Crypto implementation to hash UTF-8 text and return a lowercase hexadecimal digest.
Local processing
Result
Your result will appear here
The input stays available if you need to adjust a setting.
How to use hash generator
- 1
Enter the exact text to hash.
- 2
Choose a SHA-2 algorithm.
- 3
Generate and copy the hexadecimal digest.
A realistic example
Create a SHA-256 checksum for a small configuration value and compare it with another system.
Supported formats and limits
Input: UTF-8 text. Output: lowercase hexadecimal digest.
- Text hashing is not password storage; passwords need a slow salted password-hashing function.
- Even one whitespace change produces a different result.
Questions people ask
Can a hash be reversed?
A cryptographic hash is one-way, although weak or common inputs may be guessed.
Does LocalKit send the text to generate the hash?
No. Web Crypto runs inside your browser.