📄 Diff Checker & Text Diff

Compare two texts side by side. Additions, deletions, and modifications are highlighted line by line with word-level granularity.

📌 Original Text
✏️ Modified Text
Paste text in both panels and click Compare

How to Use This Diff Checker

  1. Paste the baseline into the left panel — the version you want to treat as "before".
  2. Paste the changed text into the right panel. Both panels stay in your browser; nothing is uploaded.
  3. Click Compare. The tool runs a longest-common-subsequence diff over the two inputs.
  4. Read the result side by side. Content only on the left is a deletion, only on the right is an addition, and lines that changed on both sides are shown as modified with the changed words highlighted.
  5. Swap or Clear to flip the comparison direction or start a fresh one. The counter next to the buttons reports how many lines were added, removed and changed.

What Gets Highlighted

MarkerMeaningTypical cause
Removed linePresent on the left onlyDeleted config key, dropped log line, removed paragraph
Added linePresent on the right onlyNew environment variable, extra import, appended row
Modified lineBoth sides, different contentChanged value, reworded sentence, bumped version string
UnchangedIdentical on both sidesContext — kept visible so you can read the diff in place

Because the comparison is word-granular inside changed lines, a single edited number or variable name is obvious instead of being buried in a redrawn line.

What Developers Actually Use It For

Diff Checker vs. Git Diff

git diff is the right tool inside a repository: it knows about revisions, staged changes and rename detection, and it emits a unified patch you can pipe into git apply. This page solves the other half of the problem — two blocks of text that were never in version control, or that live on two different machines. Paste both sides, get a side-by-side visual diff, and nothing leaves your machine.

Related Free Tools