Calculate Adler-32
Calculate Adler-32 from text and copy the 8-character hexadecimal result. Adler-32 keeps two running sums modulo 65521, then combines them into a 32-bit value.
Adler-32 is associated with zlib-style data checks. It is compact and inexpensive, but it is not a security hash.
Text handling
The input is encoded as UTF-8 before calculation. If another tool uses a different character encoding or includes line-ending bytes from a file, its Adler-32 value may differ.