UtilitySansar
Encoding

URL Encode

Percent-encode text so it can be safely dropped into a URL, query string, or form field without breaking the surrounding URL structure.

도구 요약

이 도구는 구조화된 입력을 받아 서버 업로드 없이 브라우저에서 결정적인 출력을 반환합니다.

도구 이름
URL Encode
입력 의도
변환·검증·분석할 원본 콘텐츠를 제공하세요.
출력 의도
복사, 재사용 또는 디버깅에 적합한 정규화된 출력을 받습니다.
예시 입력
hello world & friends
예시 출력
hello%20world%20%26%20friends

도구 소개

Percent-encode text so it can be safely dropped into a URL, query string, or form field without breaking the surrounding URL structure.

도구 개요

URLs reserve a small set of characters for structural meaning (?, &, =, /, #, and others). When you want to put arbitrary text inside a URL — for example, a search query, a path segment, or a query-string value — you must percent-encode the reserved and non-ASCII characters. This tool wraps the browser's built-in encodeURIComponent so each non-safe byte becomes %XX.

사용 사례

  • Use URL Encode when you need fast percent-encode text so it can be safely used inside a url.
  • Handle encoding workflows directly in the browser with no install required.
  • Support SEO long-tail intent by covering quick checks, troubleshooting, and one-off conversions.

입력/출력 예시

입력 의도
hello world & friends
출력 의도
hello%20world%20%26%20friends

자주 묻는 질문

When should I use URL encoding?+
Whenever you put user-supplied text into a URL: query parameters, path segments after the first, fragment identifiers, or form-encoded bodies.
What is the difference between encodeURI and encodeURIComponent?+
encodeURIComponent escapes more characters, including reserved URL characters. This tool uses encodeURIComponent because it is safe for any single value.

다른 도구 보기

아래의 Encoding 카테고리에서 관련 유틸리티를 찾아보세요.

전체 Encoding 보기

관련 도구

유용할 수 있는 엄선된 유틸리티