An Australian Company Number (ACN) is the unique 9-digit identifier the Australian Securities and Investments Commission (ASIC) issues to every company registered in Australia. Before relying on an ACN in a contract, onboarding flow or compliance check, you can confirm it is well-formed using ASIC’s check-digit algorithm. This validator runs that check entirely in your browser.
How it works
ASIC defines a weighted modulus-10 check digit over the first 8 digits, validated against the 9th:
- Strip spaces so you have 9 digits.
- Multiply the first 8 digits by the weights 8, 7, 6, 5, 4, 3, 2, 1.
- Sum the products.
- Take the remainder of that sum modulo 10.
- Compute the complement:
(10 - remainder) mod 10. - The ACN is valid if that complement equals the 9th digit.
Example
Validate 004 085 616 → digits 0 0 4 0 8 5 6 1 then check digit 6.
(0×8) + (0×7) + (4×6) + (0×5) + (8×4) + (5×3) + (6×2) + (1×1) = 84.
84 mod 10 = 4. Complement = (10 − 4) mod 10 = 6, which equals the 9th digit, so the ACN is valid.
Notes
A valid check digit confirms the number is well-formed, not that the company is currently registered. Search the official ASIC register to confirm status. Everything runs locally — your ACN never leaves your device.