# Illegal Characters

When you enter certain names for objects or projects, some characters are automatically replaced with an underscore (“\_”). This is due to the parametric computation logic used internally. These characters can interfere with parametric equations and cause unexpected results.

For example, if you name an object **PierCap1+5**, OpenBrIM interprets this as a parameter named *PierCap1* plus the value *5*, rather than a single name. To avoid such conflicts, the following characters are not allowed:

**Illegal characters:**

* (space)
* `'` (single quote)
* `\` (backslash)
* `/` (forward slash)
* `|` (vertical bar / pipe)
* `?` (question mark)
* `*` (asterisk)
* `-` (hyphen)
* `+` (plus sign)
* `<` (less than)
* `>` (greater than)
* `:` (colon)
* `.` (period / dot)
* `@` (at sign)
* `&` (ampersand)
* `(` (left parenthesis)
* `)` (right parenthesis)
* `%` (percent sign)

All of these will be replaced automatically with an underscore (`_`) to ensure parametric stability.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.openbrim.org/faq/general/faq-illegal-chars.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
