Compare two texts and find differences
A text diff checker shows the difference between two versions of any text — code, prose, JSON, logs, contracts — by identifying which lines were added, removed, or kept. Instead of reading both documents end-to-end, you see only what changed, which is how engineers review pull requests and editors review revisions. This tool runs fully client-side using a longest-common-subsequence algorithm, so your content never leaves the browser.
A text diff is a visual comparison between two versions of text that shows what was added, removed, or left unchanged. It's the same concept git uses in pull requests.
No. All comparison runs entirely in your browser. Nothing is uploaded, logged, or stored.
Yes — the tool comfortably handles documents up to around 8,000 lines combined before falling back to a pairwise view.
Yes. Unicode is handled correctly, including CJK, Arabic, and emoji.
Yes — click 'Copy Patch' to copy a unified-diff style output you can paste anywhere.