Remove accents

Remove diacritics and accents from text, replacing them with ASCII characters.

Face with waiting expression Nothing to see yet!

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
({
  take: [
    { type: "text" },
    {
      type: "import",
      value: "https://cdn.skypack.dev/remove-accents@0.4.2?min",
      module: true,
    },
  ],
  make: ([text, { remove }]) => remove(text),
})