Text Diff Checker
Compare two pieces of text and see line-by-line additions and deletions, like a Git diff. Highlights every change.
Generate MD5, SHA-1, SHA-256, and SHA-512 hashes of any text. Useful for checksums, fingerprints, and integrity checks.
A cryptographic hash takes input of any size and produces a fixed-length output that’s effectively unique to that input. Change one bit of the input, and the entire hash changes unpredictably. The same input always produces the same hash.
Don’t use plain MD5 or SHA for password storage. Those are designed to be fast, which is the opposite of what password hashing needs. Use bcrypt, scrypt, or Argon2 in real applications.