Encode or decode URLs safely, instantly, and without leaving your browser.
URL encoding, also known as percent-encoding, is used to convert characters that are not allowed in a URL into a format that can be transmitted safely over the internet. For example, a space becomes %20 and a question mark becomes %3F.
&, =, or spaces within a URL.URL strings often contain sensitive data like internal file paths, tokens, or emails. Manic Inventor keeps your data safe:
encodeURIComponent and decodeURIComponent functions. Your input never travels over the web.Developer Pro-Tip: Use Encode for preparing data to be sent as a URL parameter, and Decode to read human-friendly versions of complex URLs you've copied from logs.