This tool sorts Finnish words into proper Finnish alphabetical order, which places the special letters at the end of the alphabet rather than near their base letters.
How it works
Finnish (like Swedish) extends the Latin alphabet and orders it like this:
a b c d e f g h i j k l m n o p q r s t u v w x y z å ä ö
The tool builds a numeric sort key for each word by mapping every letter to its
position in that sequence, so å, ä, and ö rank just past z. It then
compares words key by key. Because the special letters are handled explicitly,
öljy correctly sorts after zeniitti, which a naive Unicode or ASCII sort gets
wrong by placing ä next to a.
Example
Sorting öljy, ananas, voi, zeniitti, ähky, yö yields ananas, voi, yö, zeniitti, ähky, öljy — the three special letters land at the end in å-ä-ö order.
Tips and notes
Turn on the v/w toggle for the traditional convention where w is collated as a
variant of v, common in older dictionaries and many Finnish names. Sorting is
case- and accent-insensitive on the base comparison and uses a stable tie-break,
so results are deterministic. To understand why these letters sit at the end, see
the Finnish alphabet reference.