Tested tool guide
Tested browser tools
Checked August 16, 2026
What File Checksum Calculator does, with a checked example
Choose a file to calculate four hexadecimal fingerprints of its exact byte content: MD5, SHA-1, SHA-256, and SHA-512. The calculation happens in the browser, so the selected file is not uploaded. The result can be compared with a checksum supplied by a publisher, sender, backup system, or other trusted source. A frequent mistake is treating a checksum as proof that a file is safe. It establishes a byte-level comparison only; it does not scan for malware or prove who created the file.
Worked example
A concrete input and expected output from the current implementation.
Input
A file named abc.txt containing exactly the three ASCII bytes abc, with no byte-order mark and no trailing newline.
->
Expected output
MD5: 900150983cd24fb0d6963f7d28e17f72
SHA-1: a9993e364706816aba3e25717850c26c9cd0d89d
SHA-256: ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
SHA-512: ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f
Each value is the defined digest of the byte sequence 0x61 0x62 0x63. Adding a newline or byte-order mark would create a different sequence and therefore different checksums.