A Cyprus Tax Identification Code (TIC) — written ΑΦΤ in Greek — is the identifier the Cyprus Tax Department issues to individuals and companies, and it doubles as the country’s VAT number for intra-EU trade. It is 8 digits followed by a single check letter, and that letter is derived from the digits via a modulo-26 algorithm. This free tool runs the exact check in your browser, which is what you need for VIES registration and company-law filings.
How it works
The trailing letter is a check character computed from the 8 digits:
- Uppercase the input and strip separators, leaving 8 digits and one letter.
- For digits in odd positions (1st, 3rd, 5th, 7th), translate them through a fixed table:
0->1, 1->0, 2->5, 3->7, 4->9, 5->13, 6->15, 7->17, 8->19, 9->21. - For digits in even positions (2nd, 4th, 6th, 8th), use their plain value.
- Sum all eight values and take the result modulo 26.
- That index
0-25maps to a letterA-Z, which must equal the 9th character.
Example and notes
Take 10259033P. The odd-position digits 1, 2, 9, 3 translate to 0, 5, 21, 7 and the even-position digits 0, 5, 0, 3 stay as-is. The total is 41, and 41 mod 26 = 15, which maps to the 16th letter P — matching the supplied check letter, so the TIC is valid.
A passing check letter confirms internal consistency only. It does not confirm the taxpayer is registered or active in VIES — only the Cyprus Tax Department’s register can do that. Everything here runs locally, so the TIC never leaves your device.