2 METHODS · 4 LANGUAGES · 8 VIDEOS

Text Anonymization Demos

Paste text directly, detect PII entities, and anonymize with Replace or Encrypt operators. Watch step-by-step walkthroughs in 4 languages.

All Demos Read the Docs

Text Anonymization (Replace)

Paste text, detect PII entities, and replace them with type-based placeholders like [PERSON], [EMAIL], [PHONE].

Text anonymization replace mode showing text input with detected PII entities in English
Text Anonymization (Replace)
Replace0:41
Textanonymisierung Ersetzen-Modus mit erkannten PII-Entitäten auf Deutsch
Textanonymisierung (Ersetzen)
Replace0:41
Anonimización de texto modo reemplazar con entidades PII detectadas en español
Anonimización de Texto (Reemplazar)
Replace0:41
Anonymisation de texte mode remplacer avec entités PII détectées en français
Anonymisation de Texte (Remplacer)
Replace0:41

Text Anonymization (Encrypt)

Anonymize text using AES-256-GCM encryption for reversible anonymization. Encrypted tokens can be decrypted later with the same key.

Text anonymization encrypt mode using AES-256-GCM encryption in English
Text Anonymization (Encrypt)
Encrypt0:41
Textanonymisierung Verschlüsselungsmodus mit AES-256-GCM auf Deutsch
Textanonymisierung (Verschlüsseln)
Encrypt0:41
Anonimización de texto modo cifrado con AES-256-GCM en español
Anonimización de Texto (Cifrar)
Encrypt0:41
Anonymisation de texte mode chiffrement avec AES-256-GCM en français
Anonymisation de Texte (Chiffrer)
Encrypt0:41

Step-by-Step Process Descriptions

Text Anonymization with Replace — Step-by-step guide
  1. Paste text containing personal data (names, emails, phone numbers, SSNs, credit cards, IBANs, addresses, organizations) into the text input area.
  2. Select a detection preset such as "General PII Detection" from the dropdown.
  3. Click "Analyze Only" to run the Named Entity Recognition pipeline. A loading spinner shows during analysis.
  4. Review all detected entities displayed as color-coded badges. Toggle individual entities on or off with checkboxes.
  5. Configure the Replace operator for each entity type. Each PII value will be substituted with its type label (e.g., <PERSON>, <EMAIL_ADDRESS>).
  6. Click "Anonymize with Selected Operators" to process all entities.
  7. View the anonymized result with all PII replaced by type labels. Use Copy to Clipboard or Clear to reset.
Text Anonymization with Encrypt — Step-by-step guide
  1. Paste text containing personal data into the text input area.
  2. Select "General PII Detection" preset to detect a broad range of entity types.
  3. Run the NER pipeline to detect all personal data entities.
  4. Review detected entities with color-coded badges.
  5. Click "All Encrypt" and select an encryption key (e.g., "Production Key 256-bit"). Unlike Replace, the encrypt operator produces reversible tokens.
  6. Click "Anonymize with Selected Operators" to encrypt all PII with the selected key.
  7. View the encrypted result containing reversible tokens like <PERSON_ENC:a1b2c3...>. These can be decrypted later via the Deanonymize feature.

See Also