What does this URL encoder decoder do?
It encodes text into a URL-safe component and decodes encoded URL text back into readable form.
Encode and decode URL components for query strings, redirects, API debugging, and copied request values.
Enter a query value, URL component, or encoded string.
Encoded or decoded output appears after a short delay.
status%3Dpaid%26customer%3DMina%20Park
It encodes text into a URL-safe component and decodes encoded URL text back into readable form.
It helps inspect query parameters, redirect URLs, search values, filters, and copied request fragments that contain spaces or special characters.
This tool uses component encoding, which is best for query values and URL fragments rather than encoding an entire URL string at once.