इस टूल में कोई समस्या है?
«यूआरएल एनकोड ऑनलाइन» के बारे में
यह टूल URL में सुरक्षित उपयोग के लिए एक स्ट्रिंग को प्रतिशत-एनकोड करता है। स्पेस, &, =, ?, / जैसे विशेष कैरेक्टर और गैर-ASCII कैरेक्टर अपने %XX हेक्साडेसिमल रूप में परिवर्तित होते हैं।
URL एनकोडिंग की आवश्यकता तब होती है जब आप उपयोगकर्ता डेटा को क्वेरी स्ट्रिंग, पथ खंड या किसी अन्य URL घटक में एम्बेड करते हैं।
टूल आपके चुने हुए मोड के आधार पर या तो पूरे URL या केवल एक घटक को एनकोड करता है।
इस टूल का उपयोग कैसे करें
How to percent-encode text for safe use in URLs
Paste the text
Drop the raw string into the "Text" field. The tool encodes any character outside the URL-safe set (`A-Z a-z 0-9 - _ . ~`) as `%XX` bytes using UTF-8.
Press Run
Result returns a single `encoded` field. Examples: `hello world` → `hello%20world`; `café` → `caf%C3%A9`; `a+b` → `a%2Bb` (since `+` means space in query strings).
When to use it
Wrapping a value before putting it in a URL path or query: `?q=` + encode(userInput). Don't encode the whole URL — only individual components (path segments, query values), or you'll mangle the `://` and `?`.
Component vs full URL
This is `encodeURIComponent` semantics — strict. `encodeURI` would leave `?` and `:` alone for use in a whole URL. If you accidentally double-encode, `%20` becomes `%2520`; symptom: literal `%20` showing in the rendered page.