# Utf16Path

`import { Utf16Path } from "destack:fs/binding";`

UTF-16-oriented host path.

```ds title="Utf16Path"
export struct Utf16Path {
    kind: "utf16";
    units: PathUtf16;
}
```

[language/library/src/fs/binding/path.ds:22:27](https://github.com/destack-sh/destack/blob/main/language/library/src/fs/binding/path.ds#L22-L27)

## Members

### `kind: "utf16"`

Path representation tag.

### `units: PathUtf16`

UTF-16 code units.
