URI Encoder

Encode/Decode an URI using URI Encode algorithm

Tags: decoder encoder uri encode/decode

Introduction

This is an online URL encoder tool which helps to encode/decode an URL.

How to use this tool?

You can input/paste your URL directly into the editor, then click the encode/decode button to encode/decode the URL.

After encoding/decoding, you can download, save or share the result. It will create a short link for you to share with others. You can also sign-in using Google/GitHub to save result into your account.

What is URL Encode?

URL encoding converts characters into a format that can be transmitted over the Internet.

URLs can only be sent over the Internet using the ASCII character-set.

Since URLs often contain characters outside the ASCII set, the URL has to be converted into a valid ASCII format.

URL encoding replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits.

URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign or with %20.

Learn more

Examples

Before encoded

      
http://www.example.com/new pricing.htm
      
    

After encoded

      
http://www.example.com/new%20pricing.htm