Use this calculator to remove duplicates from a list and keep each value once. Paste items into Input List and read the deduplicated result in Output. First-seen order is preserved.

0 unique items

Use commas, spaces, or new lines to separate items. The first occurrence of each value is kept.

What is List Unique / Dedupe?

A list can contain the same value more than once. Turning a list into its unique (deduplicated) form keeps each value only once — similar to converting a multiset into a set, while optionally preserving the order of first appearance.

Remove duplicates

List with duplicate items reduced to unique values

Suppose a shopping list accidentally repeats some items:

  • apples, berries, apples, lettuce, berries, peppers, lettuce

After deduplication (first-seen order), you get:

  • apples, berries, lettuce, peppers

Each value appears once; later repeats are dropped.

Try it!

Key points

Order preserved

This tool keeps the first time each item appears. Later duplicates are removed without re-sorting the list.

Case-sensitive

Values are compared exactly as typed. Apple and apple count as different items.

Sets vs lists

In set theory, sets do not contain duplicates. Use this tool when your data starts as a messy list and you need a clean unique collection.