Paste your input and get instant output
URL encoding (also called percent-encoding) is the process of converting characters that are not allowed in a URL into a `%XX` format, where `XX` is the hexadecimal ASCII code of the character. This ensures that URLs are transmitted correctly over the internet.
Characters that must be encoded in URLs include:
Don't confuse the two. URL encoding uses `%XX` format for HTTP requests. HTML encoding uses entities like `&` and `<` for safe rendering in HTML documents. Use the right tool for the right context — we have both.