↩ HOME🏠

🔤 Base64 Converter

Encode and Decode Base64 Data

Input Text
Output

📘 About Base64 Converter

🔐 PRIVACY FIRST • 개인정보 보호 우선
All processing happens in your browser. Zero data transmission to servers.
모든 처리는 브라우저에서 이루어집니다. 입력된 정보를 서버로 전송 하지 않습니다.

🔍 What is this tool? / 이 도구는 무엇인가요?

English: A free online Base64 encoder and decoder that helps you convert text to Base64 format and decode Base64 strings back to readable text.

한국어: 텍스트를 Base64 형식으로 변환하고 Base64 문자열을 다시 읽을 수 있는 텍스트로 디코딩하는 무료 온라인 Base64 인코더 및 디코더입니다.

💡 Why use it? / 왜 필요한가요?

English: Base64 encoding is essential for transmitting binary data over text-based protocols like HTTP, email, or JSON. It's commonly used for encoding images in data URIs, API authentication tokens, and ensuring data integrity during transmission.

한국어: Base64 인코딩은 HTTP, 이메일, JSON과 같은 텍스트 기반 프로토콜을 통해 바이너리 데이터를 전송하는 데 필수적입니다. 데이터 URI의 이미지 인코딩, API 인증 토큰, 전송 중 데이터 무결성 보장에 일반적으로 사용됩니다.

📖 How to use / 사용 방법

English:

  1. Paste your text or Base64 string in the left panel
  2. Click "Encode to Base64" to convert text to Base64
  3. Click "Decode from Base64" to convert Base64 back to text
  4. Copy the result from the right panel

한국어:

  1. 왼쪽 패널에 텍스트 또는 Base64 문자열 붙여넣기
  2. "Encode to Base64"를 클릭하여 텍스트를 Base64로 변환
  3. "Decode from Base64"를 클릭하여 Base64를 텍스트로 변환
  4. 오른쪽 패널에서 결과 복사

🎓 What is Base64? / Base64란?

English: Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It uses 64 characters (A-Z, a-z, 0-9, +, /) to encode data, making it safe for transmission over text-based systems.

한국어: Base64는 바이너리 데이터를 ASCII 문자열 형식으로 표현하는 바이너리-텍스트 인코딩 방식입니다. 64개의 문자(A-Z, a-z, 0-9, +, /)를 사용하여 데이터를 인코딩하므로 텍스트 기반 시스템을 통한 전송이 안전합니다.

📝 Examples / 예시

Original Text:

Hello, World!

Base64 Encoded:

SGVsbG8sIFdvcmxkIQ==

❓ FAQ

Q: Is Base64 encryption?
A: No, Base64 is encoding, not encryption. It's easily reversible and should not be used for security purposes.

Q: Base64는 암호화인가요?
A: 아니요, Base64는 인코딩이지 암호화가 아닙니다. 쉽게 되돌릴 수 있으므로 보안 목적으로 사용해서는 안 됩니다.

Q: When should I use Base64?
A: Use Base64 when you need to transmit binary data over text-based protocols, embed images in HTML/CSS, or encode data in URLs.

Q: 언제 Base64를 사용해야 하나요?
A: 텍스트 기반 프로토콜을 통해 바이너리 데이터를 전송하거나, HTML/CSS에 이미지를 포함하거나, URL에 데이터를 인코딩해야 할 때 사용합니다.