인코더 및 암호
URL 인코딩/디코딩
무료 URL 인코더 및 디코더. URL의 특수 문자를 퍼센트 인코딩하거나 퍼센트 인코딩된 문자열을 디코딩합니다. 브라우저에서 실행되며 가입이 필요 없습니다.
Runs in your browser
편집자 노트
Understanding · Percent signs, with a purpose.
이 심층 챕터는 현재 영어로만 제공됩니다. 위의 변환 도구는 귀하의 언어로 작동하지만, 긴 설명 글은 아직 번역되지 않았습니다.
자주 묻는 질문
Quick answers.
›What's the difference between encodeURI and encodeURIComponent?
encodeURIComponent escapes more characters (like / and ?), making it safe for query string values. We use it by default — the right choice for most cases.
›When do I need URL encoding?
Any time you put special characters (spaces, &, ?, #, accented letters) in a URL — query strings, path segments, fragments, anywhere.
›Are spaces encoded as %20 or +?
Both work. We use %20 by default (RFC 3986). + is only safe in query strings and is form-encoding, not URL-encoding.
›Is my input sent anywhere?
No — runs entirely in your browser.
›Is the tool free?
Yes — fully free, no signup.
사람들이 다음도 검색합니다.
관련 자료 읽기
블로그에서.(3)
Use with
What people reach for next.
관련 도구