URL 인코딩
아래에 텍스트를 붙여넣고 인코딩을 클릭하면 URL에서 사용할 수 있도록 퍼센트 인코딩됩니다. 모든 처리는 브라우저에서 로컬로 수행됩니다.
복사됨!
What is URL Encoding?
URL encoding (percent-encoding) replaces unsafe characters in a URL with
a % followed by two hexadecimal digits. For example, a
space becomes %20 and & becomes
%26.
Standard mode encodes all special characters - use it
when encoding a single value (e.g. a search query). Full URL
mode preserves URL-structural characters like :, /,
?, # - use it when encoding an entire URL.