URL 인코더 & 디코더
URL 을 즉시 인코딩하거나 디코딩합니다. 특수 문자를 URL-safe 형식으로 변환하거나 그 반대로 변환합니다.
What is URL Encoding?
URL encoding (also known as percent-encoding) is a mechanism for encoding information in a Uniform Resource Identifier (URI). It converts special characters into a safe format that can be transmitted over the internet.
- Spaces become %20 or +
- Special characters like <, >, & are converted to %XX format
- Essential for form data, query parameters, and safe URL transmission
- All processing happens locally in your browser - your data never leaves