Modulo arithmetic wraps numbers around like a clock: 16 hours after nine o'clock is not 25 o'clock but 1 o'clock, because several full loops of twelve are stripped away. The operation that strips them is the modulus: a mod b is the residue left after removing as many full b-sized chunks as possible. It underlies checksums, calendars, hashing, cryptography and endless number-theory questions - and it must be exact, because one wrong digit is a completely different residue.
Modulo Calculator computes a mod b with BigInt precision for any integers, positive or negative, returning the Euclidean remainder and the full identity a = q x b + r, plus the truncated quotient-and-remainder pair. A second mode computes a^e mod m by fast modular exponentiation. Everything runs locally in the browser.