Text Diff Checker
Compare two pieces of text and see line-by-line additions and deletions, like a Git diff. Highlights every change.
Encode and decode URL components and query strings. Handles spaces, special characters, and Unicode safely.
URLs can only contain a limited set of characters safely. Spaces, accents, &, =, ?, and many other characters need to be percent-encoded so they don’t break the URL structure. For example, a space becomes %20, an ampersand becomes %26.
Encoding a parameter value? Use Component. Encoding a whole URL that already has its own structure? Use URI. Most everyday cases (encoding form values, building API requests) need Component mode.