Tested tool guide
Tested browser tools
Checked August 16, 2026
What CRC32 Calculator does, with a checked example
CRC32 Calculator produces 32-bit cyclic redundancy checks for entered text and local files. It reports conventional CRC-32 and CRC-32C, which uses the Castagnoli polynomial. This helps when a protocol, archive, or checksum listing specifies either variant. File contents are processed entirely in the browser and are not uploaded. A frequent mistake is treating CRC32 as one universal calculation: CRC-32 and CRC-32C use different polynomials and generally produce different checksums for the same bytes.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
CRC-32: CBF43926
CRC-32C: E3069283
These nine ASCII digits are a standard check sequence for both variants. Conventional CRC-32 produces 0xCBF43926, while CRC-32C with the Castagnoli polynomial produces 0xE3069283.