인코더 (Base64·URL·HTML)
Encoder / Decoder (Base64 · URL · HTML)
입력한 텍스트는 브라우저에서만 처리되며 서버로 전송·저장되지 않습니다.Your text is processed entirely in your browser — never uploaded or stored.
인코더/디코더란?
인코더/디코더는 텍스트를 Base64, URL(퍼센트) 인코딩, HTML 엔티티 형식으로 서로 변환하는 도구입니다. 개발·API 연동, 데이터 URI 생성, 쿼리 문자열 처리, 게시글에 코드 안전 표시 등에 유용합니다. 방식과 방향(인코딩/디코딩)을 고른 뒤 ‘실행’을 누르면 됩니다.
각 방식 설명
- Base64: 텍스트를 UTF-8 바이트로 바꿔 64개 문자로 표현합니다. 인코딩은
btoa(unescape(encodeURIComponent(str))), 디코딩은 그 역순으로 처리해 한글·이모지도 안전합니다. - URL(퍼센트): 공백·한글·특수문자를
%XX형태로 변환합니다.encodeURIComponent/decodeURIComponent기준입니다. - HTML 엔티티:
& < > " '다섯 문자를& < > " '로 바꿉니다. 디코딩은 명명 엔티티와 숫자 엔티티(&#NN;)를 원래 문자로 되돌립니다.
개인정보·처리 방식
모든 인코딩·디코딩은 사용자의 브라우저 안에서만 이루어집니다. 입력한 텍스트는 서버로 전송되거나 저장되지 않으며, 결과는 ‘결과 복사’ 버튼으로 클립보드에 담을 수 있습니다.
What is this tool?
The encoder / decoder converts text between Base64, URL (percent) encoding, and HTML entities — handy for API work, data URIs, query strings and safely showing code in posts. Pick a type and direction, then press Run.
What each type does
- Base64: encodes text as UTF-8 bytes into 64 characters via
btoa(unescape(encodeURIComponent(str))), decoding in reverse, so Korean and emoji stay intact. - URL (percent): turns spaces and special characters into
%XXusingencodeURIComponent/decodeURIComponent. - HTML entities: converts
& < > " 'to named entities; decoding also handles numeric entities like'.
Privacy & processing
Everything runs in your browser. Your text is never uploaded or stored, and you can copy the result to your clipboard.
자주 묻는 질문
Base64란 무엇인가요?
URL 인코딩은 언제 쓰나요?
HTML 엔티티는 무엇인가요?
한글 등 유니코드도 안전하게 처리되나요?
입력한 내용이 서버로 전송되나요?
FAQ
What is Base64?
When do I use URL encoding?
What are HTML entities?
Is Unicode such as Korean handled safely?
Is my text sent to a server?
안내: 본 도구는 입력한 텍스트를 표준 방식(Base64·퍼센트·HTML 엔티티)으로 변환하는 참고용 도구이며, 모든 처리는 브라우저 안에서만 이루어집니다. Base64는 암호화가 아니므로 비밀 보호 용도로 사용하지 마세요.
Note: This tool converts your text using standard schemes (Base64, percent, HTML entities) for reference, and all processing happens in your browser. Base64 is not encryption — do not use it to protect secrets.