# UnicodeIssue

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/unicode_security/UnicodeIssue)

A dangerous Unicode character found in text.

## Signature

```python
UnicodeIssue(
    self,
    position: int,
    character: str,
    codepoint: str,
    name: str,
)
```

## Constructors

```python
__init__(
    self,
    position: int,
    character: str,
    codepoint: str,
    name: str,
) -> None
```

| Name | Type |
|------|------|
| `position` | `int` |
| `character` | `str` |
| `codepoint` | `str` |
| `name` | `str` |


## Properties

- `position`
- `character`
- `codepoint`
- `name`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/b710a69b12e49479045eaa54dfb709326473500b/libs/cli/deepagents_cli/unicode_security.py#L84)