Word & Character Counter
Count words, characters, sentences, paragraphs, reading time, and speaking time in any text โ live as you type.
Compare two pieces of text and see line-by-line additions and deletions, like a Git diff. Highlights every change.
A diff highlights the differences between two versions of a text โ the same way Git, GitHub, and code review tools show “what changed”. Lines added on the right show in green; lines removed from the left show in red; unchanged lines stay neutral.
The tool uses the classic Longest Common Subsequence algorithm to find matching lines between the two inputs. Anything not part of the common subsequence is marked as added or removed. The result is similar to git diff but focused on plain text rather than code.