# u017e user exit

The u017e user exit allows output of
any character to the terminal or spooler.

## Syntax

```
var = oconv(str,’u017e’)
```

## Example(s)

Output a character x’FF’ to the
spooler.

```
printer on
x = oconv(char(255),’u017e’)
```
Outputs the string `abc` to the terminal.

```
x = oconv(’abc’,’u017e’)
```

## See also

- [User exits](https://d3codex.com/definitions/user-exits/)

---
Source: https://d3codex.com/pickbasic-flashbasic/u017e-user-exit/ - part of the D3Codex reference.
