# Unicode Batch Data Quality Audit

**Use case:** 

Audit batches of text for hidden Unicode, bidi markers, controls, homoglyphs, codepoint details, and Unicode category counts.

## Input

```json
{
  "texts": [
    "Customer name: Jane Doe",
    "SKU-123\u0007",
    "Report‏ final",
    "Αpple and Apple"
  ],
  "detectHomoglyphs": true,
  "detectInvisible": true,
  "detectControl": true,
  "detectBidi": true,
  "includeCategoryBreakdown": true,
  "label": "crm_import_audit"
}
```

## Output

```json
{
  "textIndex": {
    "label": "#",
    "format": "number"
  },
  "label": {
    "label": "Label",
    "format": "text"
  },
  "textPreview": {
    "label": "Text Preview",
    "format": "text"
  },
  "totalCharacters": {
    "label": "Total Chars",
    "format": "number"
  },
  "issueCount": {
    "label": "Issues",
    "format": "number"
  },
  "hasSuspiciousContent": {
    "label": "Suspicious",
    "format": "boolean"
  },
  "riskLevel": {
    "label": "Risk Level",
    "format": "text"
  },
  "issues": {
    "label": "Issue Details",
    "format": "object"
  },
  "categoryBreakdown": {
    "label": "Category Breakdown",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Unicode Text Inspector](https://apify.com/automation-lab/unicode-text-inspector) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/unicode-text-inspector) to learn more, explore other use cases, and run it yourself.