OriginalModified

How to compare two texts

Paste the original version into the left editor and the modified version into the right, then press Compare Texts. Differences are highlighted in place: removed content in red on the original side, added content in green on the modified side. Nothing is uploaded and there is no sign-up.

Split view or unified view

Split view puts the two versions side by side, which is the clearest way to see what a passage looked like before and after. Unified view interleaves them into a single column in the style of a Git diff, which reads better when changes are scattered through a long document. Switch between them at any time — the comparison does not need re-running.

Word-level or character-level differences

Word-level is the sensible default for prose: a changed word is marked as one change rather than a scatter of altered letters. Character-level goes finer and is worth switching to when the edits are small and precise — a digit in an ID, a flipped letter in a typo, a changed file extension — where word-level would just mark the whole token.

Reading the difference statistics

The statistics panel counts changes two ways. The first section tracks words or characters — how many were removed, how many added, the net change, and the total affected. The second tracks lines removed, added, modified, and changed in total. The net figure is the useful one for judging whether an edit grew or shrank the text; the total is the better measure of how much was touched.

Comparing code and configuration files

Text mode compares exactly as written, which is what most code and configuration wants: a changed value, a moved line or an altered indent shows up as written rather than being normalised away. Structured formats are better served by their own tools, linked below — those compare the data rather than the characters, so reformatting and reordered keys stop counting as changes.

Your text never leaves your browser

The comparison runs in JavaScript on your own machine. There is no backend to send anything to — the whole site is a static export — so contracts, credentials, patient notes, and unreleased code can be compared without any of it crossing the network. That is a genuine difference from diff tools that upload both sides to a server before showing you the result.

Frequently asked questions

How do I compare two texts online?

Paste the original into the left box and the modified version into the right, then press Compare Texts. Removed content is highlighted in red and added content in green, with line numbers so you can find each change in the source.

What is the difference between split view and unified view?

Split view shows the two versions side by side, which makes before-and-after easy to read. Unified view merges them into one column in the style of a Git diff, which is easier to scan when changes are spread through a long document.

What is the difference between word-level and character-level comparison?

Word-level marks a changed word as a single difference and suits ordinary prose. Character-level compares letter by letter, which is more precise for small edits like a changed digit or a typo, but noisier on rewritten sentences.

Is my text uploaded to a server?

No. The comparison runs entirely in your browser. Easy Formatter is a static site with no backend, so neither version of your text is transmitted anywhere and nothing is stored.

Can I compare code and configuration files?

Yes. Text mode reports exactly what changed in the characters, which suits most code and configuration. For structured formats there are dedicated tools linked below, which compare the data rather than the characters so that reformatting does not register as a change.

Can I save or share the differences?

Yes. Copy the differences to your clipboard, or download them as a text file to attach to a review, a ticket, or a record of what changed.

How do I move between changes quickly?

Use the up and down arrow buttons, or the keyboard: arrow up and arrow down, or j and k. A counter shows which change you are currently on, so you can work through a long document without scrolling.

Is there a limit on how much text I can compare?

There is no imposed limit. Because the work happens in your browser rather than on a server, the practical ceiling is your own device memory rather than an upload cap or a rate limit.