๐Ÿงฎ CRC-8/CRC-16 Calculator

Byte length: 9

CRC-80xF4
CRC-16/CCITT-FALSE0x29B1
CRC-16/MODBUS0x4B37

Calculate CRC-8, CRC-16 (CCITT-FALSE), and CRC-16 (MODBUS) checksums of your input text instantly. These are common standards used in embedded device communication protocols and serial data error detection. All calculations run entirely in your browser.

How to use

  1. Enter the text you want to checksum.
  2. The CRC-8, CRC-16 (CCITT-FALSE), and CRC-16 (MODBUS) checksums (in hex) are shown automatically.

FAQ

Whatโ€™s the difference between CRC-8 and CRC-16?

The bit width: CRC-8 produces an 8-bit checksum (0x00โ€“0xFF), while CRC-16 produces a 16-bit checksum (0x0000โ€“0xFFFF), giving it stronger error-detection capability.

Whatโ€™s the difference between CCITT-FALSE and MODBUS?

Both are CRC-16 variants, but they use different generator polynomials, initial values, and bit-reflection settings. CCITT-FALSE and MODBUS are two well-known variants with different parameters.

How is this different from the existing checksum tool?

This siteโ€™s "Checksum Calculator" tool covers CRC32 and Adler-32, while this tool covers the CRC-8 and CRC-16 family. Use whichever matches your protocol.