use strict; use warnings; my @items = ('ü','ü','ä', 'Ä'); my @unique_items = sort keys %{ {map { $_ => 1 } @items} }; print "@unique_items\n";