Remove Accents

Remove diacritical marks and accents from Unicode characters, converting them to their ASCII equivalents.

Code

General
str.normalize('NFD').replace(/[\u0300-\u036f]/g, '');

Parameters

The string to normalize

Browser·fetch() may be limited by CORS

More JavaScript Snippets