Monu Tools

Base64 인코더 및 디코더

텍스트를 Base64로 인코딩하거나 Base64를 텍스트로 디코딩합니다. UTF-8 안전하며 방향을 자동으로 감지합니다.

Base64 인코더 사용 방법

  1. 01

    인코딩할 텍스트를 입력하거나 Base64를 붙여넣어 디코딩하세요.

  2. 02

    실행을 누르세요. 방향은 자동으로 감지됩니다.

  3. 03

    출력 패널에서 결과를 복사하세요.

What Base64 is

Base64 represents binary or text data using just 64 printable ASCII characters (A-Z, a-z, 0-9, plus + and /), encoding every three bytes as four characters. That keeps data intact when it travels through systems that were built for text rather than raw bytes.

Where you see it

You see it everywhere: data URLs that embed an image directly in HTML or CSS, email attachments (MIME), the header and payload of a JSON Web Token, HTTP Basic authentication headers, and many API fields that need to carry binary data as a plain string.

How this tool handles it

This tool encodes text to Base64 and decodes Base64 back to text, choosing the direction automatically. It is UTF-8 safe, so accents, emoji and other Unicode characters survive the round trip without corruption, which the naive built-in browser functions do not guarantee on their own.

Encoding is not encryption

It is important to know what Base64 is not: it is an encoding, not encryption. Anyone can decode it instantly, so it provides zero security. Never use it to hide passwords, tokens or secrets. Its job is safe transport and representation, not confidentiality.

The size cost

Base64 also has a size cost. The encoded output is about 33 percent larger than the original, because four characters stand in for every three bytes. That trade-off is usually worth it for compatibility, but it is why you would not Base64-encode large files when a real binary channel is available.

Runs in your browser

Everything runs in your browser, so the text you paste is never uploaded. To turn an image file into a Base64 data URL instead of plain text, use the dedicated Image to Base64 tool.

자주 묻는 질문

자동 감지는 어떻게 작동하나요?

입력이 유효한 Base64처럼 보이고 읽을 수 있는 UTF-8 텍스트로 디코딩된다면 디코딩됩니다. 그렇지 않으면 인코딩됩니다. 이것으로 수동 전환 없이 일반적인 경우를 처리합니다.

영어가 아닌 문자에 안전한가요?

예. 인코딩과 디코딩은 UTF-8 안전하므로 이모지, 악센트 문자 및 기타 유니코드 문자가 정확하게 변환됩니다.

비밀번호나 비밀을 보호하는 데 사용할 수 있나요?

Base64는 인코딩이지 암호화가 아닙니다. 쉽게 되돌릴 수 있으며 보안을 제공하지 않습니다. 민감한 데이터 보호에 절대 사용하지 마세요.

출처

이 도구 임베드하기

이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.

<iframe src="https://monu.tools/embed/ko/base64-encoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

관련 도구