Guide
1. Paste your list below, one item per line.
2. Use the sort buttons for alphabetical ordering or de-duplication.
3. Use the copy button to save the cleaned text to your clipboard.
Logic
Uses Array.prototype.sort with localeCompare for precise string ordering. De-duplication is powered by ES6 Sets, ensuring O(n) performance.
Smart sorting
Natural / numeric-aware sort↓
Uses localeCompare with numeric mode so e.g. v2 sorts before v10 — great for versions and mixed lists.