Kit — text diff
Text difference checker
Paste two versions and see which lines were added, removed or replaced — and, inside a replaced line, which words actually changed. It all runs in the page, so contract drafts and internal config files can be compared without leaving your machine.
Paste text on both sides and the differences appear here.
This runs entirely in your browser. Nothing is uploaded.
Related tools
How this one works
A line-level diff reports a single fixed comma as "this whole line was replaced". Here every replaced line is compared again at word level, so only the part that moved is marked. The tokenizer keeps Latin words and numbers whole and splits everything else per character, which is what makes the same pass useful for Japanese, where words are not separated by spaces.
Contract revisions, internal configuration, unpublished drafts. Most online diff sites send what you paste to a server, so the comparison itself is the disclosure. Nothing is transmitted here.
Additions carry a "+" and an underline, removals a "−" and a strike-through. The diff stays readable in greyscale, in print, and for anyone who cannot rely on the red/green distinction.
Reading the result
Questions
Is there a size limit?
5,000 lines per side. Above that the tool stops and says so rather than comparing the first few thousand lines — a partial result mistaken for the whole diff is the more expensive failure. For anything larger, git diff is the right tool.
Is my text stored?
No. Everything happens in the page and nothing is sent to a server. Close the tab and it is gone.
What is the unified diff for?
It is the standard "--- / +++ / @@" format that git and patch understand, with three lines of context around each change. Copy it into a review comment, or save it as a patch file.
Can I compare Word or PDF files directly?
No — this compares pasted text, so extract the text first. Formatting differences such as bold or colour are not part of the comparison.
Side-by-side or unified?
Side by side is better for checking which old line became which new one. Unified fits a narrow screen and reads top to bottom when you just want to walk through the changes. The underlying comparison is identical.