Base64 인코더/디코더
Base64 형식으로 텍스트를 인코딩 및 디코딩합니다.
How to Use
- 1
Paste your text into the input field.
- 2
Click Encode to convert text to Base64, or Decode to convert Base64 back to text.
- 3
Copy the result with the copy button.
Features
Encode & Decode
Switch instantly between encoding plain text to Base64 and decoding Base64 back to text.
UTF-8 Support
Handles international characters and emoji correctly using the TextEncoder/TextDecoder API.
Instant Results
Encoding and decoding happens instantly in your browser with no server calls.
Error Detection
Invalid Base64 strings are detected and a clear error message is shown.
FAQ
Base64란 무엇인가요?
Base64는 이진 데이터를 ASCII 텍스트로 변환하는 인코딩 방식으로, 데이터 전송에 주로 사용됩니다.
유니코드를 지원하나요?
네, TextEncoder/TextDecoder를 사용하여 UTF-8 텍스트를 올바르게 처리합니다.