Bytelify

Sort Numbers

Sort a list of numbers ascending or descending, live as you type.

100% private, runs in your browser
Sorted

Sorts numerically (not alphabetically — 2 comes before 10), live as you type, entirely in your browser.

What is Sort Numbers?

Paste a list of numbers (one per line or comma-separated) and get them sorted numerically instantly — ascending or descending, correctly ordering 2 before 10 (unlike a plain alphabetical sort, which would put 10 before 2). This distinction trips up a surprising amount of software — a spreadsheet column or JS array sorted with the default string comparator will put "10" before "2". Sorting here is numeric by design, and happens entirely in your browser as you type.

FAQ

Anything that isn't a valid number is skipped, so the sorted result only includes the numeric values found.

Yes — decimals and negative values sort correctly by their actual numeric value, not just their digits.