Calculate CRC-32
Calculate CRC-32 from text and copy the 8-character hexadecimal result. The standard CRC-32 profile uses polynomial 0x04C11DB7, reflected input and output, initial value 0xFFFFFFFF, and final XOR 0xFFFFFFFF.
CRC-32 is for accidental error detection. It is a poor choice for security decisions because different inputs can be constructed with the same checksum.
Matching another CRC-32 value
Mismatches usually come from different bytes, not a broken calculator. Check line endings, leading spaces, trailing spaces, and whether another program is calculating the checksum over a file’s raw bytes instead of pasted text.