URL full form Last Updated : 18 Jul, 2025 Comments Improve Suggest changes Like Article Like Report URL is the abbreviation of Uniform Resource Locator. It is the resource address on the internet. The URL (Uniform Resource Locator) is created by Tim Berners-Lee and the Internet Engineering working group in 1994. URL is the character string (address) which is used to access data from the internet. The URL is the type of URI (Uniform Resource Identifier). A URL contains the following information which is listed below:Protocol nameA colon followed by double forward-slash (://)Hostname (domain name) or IP addressA colon followed by port number (optional - unless specified otherwise, ":80" is the default when using HTTP, and ":443" is the default when using HTTPS)Path of the fileSyntax of URL:protocol://hostname/filenameProtocol: A protocol is the standard set of rules that are used to allow electronic devices to communicate with each other. Hostname: It describes the name of the server on the network. Filename: It describes the pathname to the file on the server. The URL https://www.geeksforgeeks.org/php-function/ contains the information protocol: https, hostname: geeksforgeeks.org and filename: php-functions. Comment More infoAdvertise with us Next Article What is URL (Uniform Resource Locator) ? D dharmendra_kumar Follow Improve Article Tags : GBlog Similar Reads HTTP Full Form - Hypertext Transfer Protocol HTTP stands for Hypertext Transfer Protocol, and itâs the system that allows communication between web browsers (like Google Chrome or Firefox) and websites. When you visit a website, your browser uses HTTP to send a request to the server hosting that site, and the server sends back the data needed 7 min read URI Full Form URI stands for Uniform Resource Identifier. It is a technical term used for all resources Connected to the World Wide Web. URIs established the protocols over the internet to connect among resources. In this article, we will discuss URI in detail.What is a Uniform Resource Identifier (URI)?A URI (Un 4 min read What is URL (Uniform Resource Locator) ? A URL or Uniform Resource Locator is a Unique identifier that is contained by all the resources available on the internet. It can help to locate a particular resource due to its uniqueness. It is also known as the web address. A URL consists of different parts like protocol, domain name, etc. The us 3 min read Describe the various components of URL In this article, we will see the various components of the URL & will understand the purpose & meaning of each component. URL (Uniform Resource Locator) is a technique that is utilized by browsers to get the resources that are published on the web. It provides a way to identify the exact add 5 min read HTML URL Encoding A Uniform Resource Locator (URL) is simply the address of a website to access the website content. Web browsers retrieve pages from web servers using a URL (Uniform Resource Locator).What is URL Encoding?URL Encoding is the process of converting the URL into a valid format that is accepted by web br 4 min read URL toExternalForm() method in Java with Examples The toExternalForm() function is a part of URL class. The function toExternalForm() returns the string representation of a specified URL. The string is created by calling the toExternalForm() function of the stream protocol handler for this object. Function Signature: public String toExternalForm() 2 min read Like