Unicode Normalizer
Unify equivalent forms via NFC, NFD, NFKC or NFKD
All processing happens locally in your browser. Your data is never uploaded to a server.
Unify equivalent forms via NFC, NFD, NFKC or NFKD
All processing happens locally in your browser. Your data is never uploaded to a server.
—
Canonical composition: combines what it can, so é becomes one code point. The default for the web and filenames.
—
Canonical decomposition: é splits into e plus a combining accent. Use it for per-character work or stripping accents.
—
Compatibility composition: the fi ligature becomes fi, ① becomes 1, full-width becomes ASCII. Formatting is lost, which suits search and matching.
—
Compatibility decomposition: apply compatibility mappings, then decompose everything. The most aggressive form.