# Unicode Hidden Character Detector

**Use case:** 

Detect hidden Unicode characters, zero-width spaces, control characters, bidi markers, homoglyphs, and category breakdowns in text.

## Input

```json
{
  "texts": [
    "Hello​ World",
    "Invoice‮ cod.exe",
    "Normal clean text"
  ],
  "detectHomoglyphs": true,
  "detectInvisible": true,
  "detectControl": true,
  "detectBidi": true,
  "includeCategoryBreakdown": true,
  "label": "security_review"
}
```

## 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.