What is URL Encoding?
URL encoding replaces unsafe characters with a "%" followed by two hex digits (e.g., space → %20), so URLs can be transmitted correctly over the internet.
It is not encryption; it only makes the text safe for URLs. Use decode to view the original text again.