---
title: "Remove accents from a string"
description: "Strip accents from strings in TypeScript."
date: "2025-10-02"
tags: ["typescript","string","accents","frontend"]
canonical: "/snippets/typescript/string/remove-accents"
---

import { Code } from '@astrojs/starlight/components'
import Source from './remove-accents.ts?raw'

## Remove accents from a string

<Code code={Source} lang="ts" title="remove-accents.ts" wrap />
