Base64 인코딩/디코딩
한글·이모지 정확 처리, URL-safe·파일 지원
★★★★★ 수천 명이 애용
🔒 프라이버시 우선
⚡ 즉시 결과
Plain text
Base64
선택하는 이유
🔒
프라이버시 우선
입력은 안전하게 처리되며 판매되지 않습니다. 클라이언트 도구는 브라우저를 벗어나지 않습니다.
⚡
즉시·무료
설치 없이, 기다림 없이. 어떤 기기의 브라우저에서도 몇 초 만에 결과.
🎁
평생 무료
가입 없이, 워터마크 없이, 제한 없이. 모든 클라이언트 도구를 마음껏 사용하세요.
자주 묻는 질문
Why do other tools garble Chinese/emoji text?⌄
JavaScript’s raw btoa() only handles Latin-1. We encode text to UTF-8 bytes first (TextEncoder), so Chinese, Japanese, emoji and every other script round-trip correctly.
What is URL-safe Base64?⌄
A variant (RFC 4648 §5) that replaces + with -, / with _ and drops = padding, so the result can live inside URLs, filenames and JWTs without escaping. Toggle the URL-safe checkbox to encode or decode it.
Is Base64 encryption?⌄
No — it is an encoding, not encryption. Anyone can decode it instantly. Use it for data transport and embedding, never for hiding secrets.