URL 변환기

안전한 웹 전송을 위해 URL과 텍스트를 인코딩합니다

방법:
유형:
인코딩 정보

구성 요소 인코딩 : URL 매개 변수의 특수 문자 인코딩 (가장 일반적)

전체 URI 인코딩 : URIS에서 허용되지 않는 문자 만 인코딩합니다 (보존 URL 구조)

입력 텍스트/URL

URL 인코딩 출력

URL 인코딩 된 데이터가 여기에 나타납니다

URL Encoder & Decoder - Online URL Tool

A URL encoder/decoder converts between human‑readable text and percent‑encoded forms so reserved characters travel safely in query strings and paths. Use this tool to debug redirects, normalize query parameters, and prepare values for APIs and OAuth callbacks without double‑encoding.

What is URL encoding?

URLs can safely carry only a subset of ASCII. Characters like spaces, quotes, and non‑ASCII glyphs must be percent‑encoded as %HH hex bytes. For example, space becomes %20, ü in UTF‑8 becomes %C3%BC. Decoding reverses this for display.

How to use it

Paste a string or query component to encode or decode it. The converter uses UTF‑8 and preserves reserved characters appropriately so your output matches browser and server implementations. It’s ideal for building canonical query strings, sanitizing logs, and fixing broken redirects.

About the URL Converter

Use this utility to debug redirects, build query strings, and sanitize logs before sharing. Accurate encoding prevents subtle bugs and security issues caused by ambiguous characters.

Further reading

Correct URL handling is foundational for web reliability and security. Use this page to verify edge cases and standardize behavior across services.