How to use the diff checker
Paste the older version into the Original box and the newer one into Changed. The comparison runs as you type, so there is no button to press: the panel below the options shows every line that was added, removed or edited, and the summary line above it counts them and gives a similarity percentage. For an edited line, the tool goes one step further and marks the individual words that differ, so a sentence where only "Fridays" became "Thursdays" shows that one word in red on the left and green on the right rather than two whole lines.
Pick Side by side when you want to read two versions of a paragraph next to each other, or Inline when the screen is narrow or you are comparing code and prefer the familiar minus and plus markers. Switch the highlighting to Characters for short strings such as a licence key or a URL, where a single changed digit is what you are hunting for. The ignore options let you skip differences that do not matter to you, such as capitalisation, indentation or double spacing. Swap exchanges the two texts, Copy unified diff puts a standard patch on the clipboard, and Download saves the same thing as a .diff file.
Why compare text this way
Reading two drafts of a contract, a 400-line configuration file or a colleague's rewrite of your documentation line by line is slow and unreliable; a changed date or a dropped "not" is easy to miss. A proper diff removes the guesswork. It uses the same Myers algorithm that Git relies on, so it finds the shortest sensible explanation of the changes instead of flagging everything after the first inserted line, and it copes with a 5,000-line file in well under a second on a normal laptop.
Everything happens in your browser. The texts are never uploaded, which matters when you are comparing salary spreadsheets exported as CSV, legal wording or unreleased source code. The exported unified diff follows the format expected by patch and git apply, so the comparison you check on screen can be handed to a developer or attached to a ticket without any reformatting.