The RUT (Registro Único Tributario) is Uruguay’s 12-digit tax identifier issued by the DGI (Dirección General Impositiva). It carries a single modulo-11 check digit in the final position, calculated from the preceding 11 digits. This free validator runs the DGI algorithm and shows the full calculation.
How it works
The DGI uses a weighted modulo-11 scheme:
- Take the first 11 digits and multiply them, left to right, by the weights
4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2. - Sum the products.
- Compute
sum mod 11to get a remainder. - The check digit is
11 - remainder. If that gives 11, the check digit is 0. A remainder that would yield 10 marks an invalid, never-issued number.
The 12th digit must equal that computed check digit for the RUT to be valid. The tool prints the weighted sum, the remainder, and the expected digit so the result is fully transparent.
Example and notes
Enter a 12-digit RUT and the tool weights the first 11 digits, sums them, takes mod 11, and compares the derived check digit to the entered 12th digit. Change any digit and the check digit will usually shift, revealing the error.
A valid result confirms the RUT is internally consistent under the DGI rule — it does not confirm the taxpayer is registered or active. For e-CFE (electronic invoice) compliance, confirm taxpayer status on the official DGI portal. All processing is local; your RUT never leaves your device.