CPF + Issue Date Validator
Validate the extended CPF format with a date (CPF + DDMMAAAA), used in some government files and layouts. Checks the number pattern only, not the check digit.
CPF and date in one text field
Some Brazilian government file layouts and payroll systems pack a CPF and a date onto the same line, in the style 123.456.789-09 01/01/2020. Before importing ten thousand rows and finding the problem halfway through processing, it helps to confirm the shape of the text. Paste one line here and the verdict appears instantly, no button involved: green if the format matches, red if something is out of place.
What the page accepts, literally: eleven CPF digits with dots and dash optional, one single whitespace character, then eight date digits as day, month and year with slashes optional. So 12345678909 01012020 and 123.456.789-09 01/01/2020 both pass, and you can mix the masks. Two spaces between the number and the date fail the check, because the pattern expects exactly one separator character.
Two things it does not do. It never verifies the CPF check digit, so 000.000.000-00 followed by a date shows green. And it never verifies the date is real: 32/13/2020 sails through. Treat it as a mask filter, and leave real validation to the next step of your import, with a CPF validator and a proper date parse. Since everything happens in the browser, the number you paste never leaves your machine.
Frequently asked questions
Does it actually validate the CPF?
Can I write the date without slashes?
Why did my line with two spaces fail?
Related Tools
Date Format Validator (ISO/Common)
Check if a date is in ISO 8601 or common formats (YYYY-MM-DD, DD/MM/YYYY, MM/DD/YYYY). Auto-detects format.
Slug Validator
Check whether a slug is in valid format (a-z, 0-9, hyphens, no accents, no spaces, no double or edge hyphens). Suggests a fix. Everything in your browser.
UUID Validator
Validate UUIDs (v1, v3, v4, v5, v7) and identify the version. Accepts with or without hyphens, upper or lower case. Everything in your browser.
CPF/CNPJ Detector & Validator
Auto-detect if a string is CPF (11 digits) or CNPJ (14 digits) and validate its check digit.
CEI Format Validator
Validate the format of a Brazilian CEI number (12 digits), used by construction sites and employers without a CNPJ. Check the number in labor records.
PIS Format Validator
Validate a Brazilian PIS/PASEP number (11 digits) by checking its verification digit with the official algorithm. Useful for HR and payroll records.