C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML URL EncodeWhat is URL?URL stands for Uniform Resource Locator. It is actually a web address. A URL can contain words i.e. (TheDeveloperBlog.com) or an Internet Protocol (IP) address i.e.195.201.68.81. But most of the user use URL in the form of words because it is easy to remember than numbers. Syntax of a URL: scheme://prefix.domain:port/path/filename Here,
Following is a list of some common types of schemes used in URL:
URL EncodingURL encoding is used to convert non-ASCII characters into a format that can be used over the Internet because a URL is sent over the Internet by using the ASCII character-set only. If a URL contains characters outside the ASCII set, the URL has to be converted. In URL encoding, the non-ASCII characters are replaced with a "%" followed by hexadecimal digits. URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign, or %20. Following is a list of some character sets which are encoded by browser after submitting the text.
Next TopicHTML global attributes
|