URL 단축 · 인코딩 도구란?

이 페이지는 링크를 다룰 때 자주 필요한 두 가지 작업을 한곳에서 처리합니다. 하나는 긴 주소를 짧게 줄이는 URL 단축이고, 다른 하나는 한글이나 공백처럼 주소에 그대로 쓸 수 없는 문자를 안전한 형태로 바꾸는 URL 인코딩입니다. 두 기능은 이름이 비슷하지만 목적이 전혀 다릅니다.

사용 방법

  1. 단축하려면 입력창에 전체 주소를 https://부터 붙여넣고 단축 버튼을 누릅니다.
  2. 결과로 나온 짧은 주소를 복사해 사용하세요. 원본으로 자동 이동합니다.
  3. 인코딩하려면 변환할 문자열을 넣고 인코딩 버튼을 누릅니다.
  4. 반대로 %EC%95%88 같은 문자열을 원래 글자로 되돌리려면 디코딩을 사용합니다.

URL 인코딩이 필요한 이유

인터넷 주소 규격(RFC 3986)은 주소에 쓸 수 있는 문자를 영문자, 숫자, 그리고 - . _ ~ 정도로 제한합니다. 한글, 공백, &, ?, # 같은 문자는 그대로 넣으면 주소가 잘리거나 엉뚱하게 해석됩니다. 그래서 이런 문자를 바이트 단위로 쪼갠 뒤 % 뒤에 16진수로 표기하는데, 이것이 퍼센트 인코딩입니다.

검색어에 특수문자가 섞였는데 결과가 이상하게 나오거나, 링크를 메신저로 보냈더니 일부만 파랗게 표시되는 문제는 대개 인코딩이 빠져서 생깁니다.

URL 단축은 언제 쓰나요

짧은 주소는 글자 수 제한이 있는 곳(문자 메시지, SNS 게시글), 종이나 화면에 주소를 옮겨 적어야 하는 상황, QR코드를 만들 때 유용합니다. 특히 QR코드는 담는 정보가 길수록 격자가 촘촘해져 인식률이 떨어지므로, 주소를 줄인 뒤 코드를 만들면 훨씬 잘 읽힙니다.

다만 단축 주소는 목적지가 보이지 않아 받는 사람이 경계할 수 있고, 단축 서비스가 문을 닫으면 링크가 통째로 죽습니다. 오래 보존해야 하는 문서나 공식 안내에는 원본 주소를 쓰는 편이 안전합니다.

자주 묻는 질문

Q. 단축된 주소는 얼마나 유지되나요?
이 도구는 is.gd 서비스를 이용하며, 해당 서비스의 정책을 따릅니다. 영구 보존을 보장하지는 않으므로 중요한 용도라면 원본 주소를 함께 남겨두세요.

Q. 인코딩된 주소를 두 번 인코딩하면 어떻게 되나요?
% 자체가 다시 %25로 바뀌어 %2520 같은 형태가 됩니다. 이중 인코딩은 링크가 깨지는 흔한 원인이니, 이미 %가 보이는 주소는 그대로 두세요.

Q. 입력한 주소가 기록되나요?
인코딩·디코딩은 브라우저 안에서만 처리됩니다. 단축은 원리상 외부 서비스에 주소를 전달해야 하므로, 민감한 주소는 단축하지 않는 편이 좋습니다.

What is the URL Shortener & Encoder?

This page handles two common link-related jobs. Shortening turns a long address into a compact one. Encoding converts characters that can't appear literally in a URL — spaces, non-Latin text, reserved symbols — into a safe form. The names sound similar but the purposes are unrelated.

How to Use

  1. To shorten, paste the full address including https:// and click shorten.
  2. Copy the short link; it redirects to the original.
  3. To encode, enter your text and click encode.
  4. To turn something like %EC%95%88 back into readable text, use decode.

Why URL Encoding Exists

The URL specification (RFC 3986) allows only letters, digits and a handful of symbols such as - . _ ~. Spaces, non-Latin characters and reserved symbols like &, ? and # break the address or get misread. Percent encoding solves this by splitting such characters into bytes and writing each as % followed by two hex digits.

If a search link with special characters returns odd results, or a link you shared is only partly clickable, missing encoding is usually the culprit.

When to Shorten a URL

Short links help where character counts are limited (SMS, social posts), where someone has to copy an address by hand, and when generating QR codes. QR codes in particular get denser and harder to scan as the encoded text grows, so shortening first produces a much more reliable code.

The trade-offs: recipients can't see where a short link leads, which makes some people wary, and if the shortening service shuts down every link dies with it. For archival documents or official notices, use the original address.

FAQ

Q. How long does a short link last?
This tool uses the is.gd service and follows its policy. Permanence isn't guaranteed, so keep the original address on record for anything important.

Q. What happens if I encode an already-encoded URL?
The % itself becomes %25, producing things like %2520. Double encoding is a frequent cause of broken links — if you already see % sequences, leave them alone.

Q. Is my input logged?
Encoding and decoding happen entirely in your browser. Shortening necessarily sends the address to an external service, so avoid shortening sensitive URLs.