🔗
URL Encoder/Decoder
Online URL encoder/decoder with Component and URI modes, real-time conversion
0
0
# URL Encoder/Decoder
Online URL encoder/decoder with Component and URI modes, updates in real time.
## Features
- ✅ Component mode: full encoding (includes / ? &)
- ✅ URI mode: preserves URL structure characters
- ✅ Real-time conversion as you type
- ✅ One-click swap input and output
- ✅ Copy result
- ✅ Pure client-side processing
## How to Use
1. Enter the content to encode/decode
2. Select direction (encode/decode) and mode (Component/URI)
3. The result updates in real time
4. Copy or swap the result
## FAQ
### What is the difference between Component and URI modes?
Component mode uses `encodeURIComponent`, which encodes all special characters including `/`, `?`, and `&`. URI mode uses `encodeURI`, preserving URL structure characters and is suitable for encoding entire URLs.