> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://viem-d2k3terix-wevm.vercel.app/api/mcp` to find what you need.

# normalize

Normalizes ENS name to [UTS51](https://unicode.org/reports/tr51) and [ENSIP-15](https://github.com/ensdomains/docs/blob/9edf9443de4333a0ea7ec658a870672d5d180d53/ens-improvement-proposals/ensip-15-normalization-standard.md).

Internally uses [`@adraffy/ens-normalize`](https://github.com/adraffy/ens-normalize.js).

## Import

```ts
import { normalize } from 'viem/ens'
```

## Usage

```ts
import { normalize } from 'viem/ens'

normalize('wagmi-d𝝣v.eth') // [!code focus:2]
// 'wagmi-dξv.eth'
```

## Returns

`string`

The normalized ENS label.

## Parameters

### name

* **Type:** `string`

A ENS name.
