Quick URL Encoding
Need to quickly encode a string for a URL query parameter, API request, or form submission? Type or paste your text below and copy the encoded output. The conversion is real-time β no buttons to click, no forms to submit. This is the fastest way to get a URL-encoded string.
Most Common Characters That Need Encoding
βSpace β %20 (or + in form data)
β& (ampersand) β %26 β separates query parameters
β= (equals) β %3D β separates key from value
β? (question mark) β %3F β starts query string
β# (hash) β %23 β starts fragment
β/ (slash) β %2F β path separator
β% (percent) β %25 β the escape character itself
Web Development Examples
Building a search URL: https://api.example.com/search?q= + encode(cafΓ© lattΓ©) = https://api.example.com/search?q=caf%C3%A9%20latt%C3%A9. Building an OAuth redirect: &redirect_uri= + encode(https://myapp.com/callback) = &redirect_uri=https%3A%2F%2Fmyapp.com%2Fcallback.