Sort & Shuffle Lines
Sort lines alphabetically or by length, reverse their order, or shuffle them randomly.
Result
apple banana cherry date
Everything runs in your browser — nothing you type here is sent anywhere.
Frequently asked questions
How does alphabetical sorting handle numbers and symbols?+
It uses your browser's locale-aware comparison, so numbers and punctuation are ordered sensibly alongside letters, not just by raw character codes.
Is the shuffle actually random?+
Yes — it uses a fair Fisher-Yates shuffle powered by your browser's random number generator, so every ordering is equally likely.
Is my text uploaded anywhere?+
No. All sorting happens client-side in your browser; nothing you type is sent to a server.