Base64 Encode / Decode (Text)
Convert text to and from Base64, with full Unicode and emoji support. Everything runs in your browser — nothing is uploaded.
데이터 수집 없음
데이터베이스도, 계정도 없습니다. 여러분의 파일을 볼 수 없습니다.
초고속
브라우저 네이티브 처리 — 업로드 없이, 기다림 없이.
100% 무료
제한 없음, 워터마크 없음, 숨은 비용 없음.
계정 불필요
로그인? 없습니다. 그냥 열고 바로 사용하세요.
About Base64 encoding
What Base64 is for
Base64 represents binary or text data using only safe ASCII characters. It's used to embed data in URLs, JSON, JWTs, emails, and data URIs — anywhere arbitrary bytes need to survive a text-only channel.
It is encoding, not encryption: anyone can decode it. Never use Base64 to hide secrets.
Unicode-safe
Naive Base64 tools break on emoji and non-Latin text. This one encodes via UTF-8 first, so characters like 안녕 or 🌍 round-trip perfectly.
Frequently asked questions
Does it handle emoji and non-English text?
Yes — it encodes as UTF-8, so any character round-trips correctly.
Is Base64 secure?
No. It's reversible encoding, not encryption — don't use it to protect sensitive data.
Is my text uploaded?
No. Encoding and decoding happen locally in your browser.
Why did decoding fail?
The input wasn't valid Base64 (wrong characters or length/padding).