Tested tool guide
Tested browser tools
Checked August 16, 2026
What PII Detector does, with a checked example
Paste any block of text and this tool scans it for strings shaped like email addresses, US phone numbers, SSNs, and street addresses, then reports each match by type and the exact text that matched. Detection is pattern matching that runs entirely in the browser; nothing you paste is sent anywhere. The thing users most often get wrong is that a match proves a format appears, not that the data is real. 123-45-6789 gets flagged even though it is a widely used dummy SSN, and a clean result proves nothing, because unusual formats and uncovered categories pass silently.
Worked example
A concrete input and expected output from the current implementation.
Input
Client note: [email protected], phone 415-555-0137, SSN on file 123-45-6789. Prefers email contact.
->
Expected output
3 matches found
- Email: [email protected]
- Phone: 415-555-0137
- SSN: 123-45-6789
Each match is found by format alone. The email has a local part, an @ sign, and a domain; the phone uses the hyphenated xxx-xxx-xxxx shape; the SSN is nine digits in the XXX-XX-XXXX arrangement. The tool reports type and matched text, not whether the phone or SSN belongs to a real person, which is why the well-known dummy number 123-45-6789 appears in the results.