# Unicode Homoglyph Phishing Checker

**Use case:** 

Check suspicious text for Unicode homoglyphs, confusable letters, invisible markers, codepoints, names, and character categories.

## Input

```json
{
  "texts": [
    "раypal.com",
    "gοοgle.com",
    "Ηello support team"
  ],
  "detectHomoglyphs": true,
  "detectInvisible": false,
  "detectControl": false,
  "detectBidi": false,
  "includeCategoryBreakdown": true,
  "label": "phishing_check"
}
```

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