# UnicodeIssue

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/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/0412009c5441bef8d75a427e1da8909e33ab5b56/libs/code/deepagents_code/unicode_security.py#L84)