URL Parser
Break a URL down into its protocol, host, path, query parameters, and more.
Normalize email addresses by lowercasing, stripping +tags, and removing Gmail dots, then detect duplicates.
The Email Normalizer converts a list of inconsistently formatted email addresses into a single, comparable format. It merges addresses that point to the same inbox but look different as strings — differences in letter case, or Gmail’s “+tag” and dot conventions. It’s useful for cleaning up CRM data, mailing lists, or user databases before checking for duplicates.
Yes, completely free.
Gmail ignores dots (.) in the username and treats googlemail.com and gmail.com as the same address. Enabling this option merges both into a single normalized address.
Addresses like user+newsletter@example.com use a "+" followed by a tag to route mail to the same inbox under different labels. Enabling this option strips everything after the "+" to normalize the address.
Lines that aren't valid email addresses (missing "@", malformed domain, etc.) are listed as invalid and excluded from the output.
No. All processing happens in your browser — your list of email addresses is never sent anywhere.