Build a simple URL with two parameters
Input
https://example.com/search --- q=hello world page=2
Output
https://example.com/search?q=hello%20world&page=2
Useful when building a search URL with encoded parameter values.
Developer Tools
Review practical URL Builder examples so you can understand expected input, output, and common patterns faster.
Use this URL Builder to create a full URL from a base address and parameter list. It is useful for tracking links, redirect targets, API requests, test URLs, and debugging when you want to build a correct URL without manually joining query strings and separators.
Example pages are especially useful for developer tools because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
https://example.com/search --- q=hello world page=2
Output
https://example.com/search?q=hello%20world&page=2
Useful when building a search URL with encoded parameter values.
Input
https://api.example.com/items --- limit=10 sort=desc
Output
https://api.example.com/items?limit=10&sort=desc
Helpful when constructing request URLs quickly.
Fix: Put the base URL on the first line before the separator.
Fix: Use one parameter per line in key=value format.
Fix: Use URL Splitter or URL Parser when you need to break apart an existing URL.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main URL Builder page and test your own real input.