브라우저에서 Base64를 인코딩, 디코딩, 변환하세요. 데이터가 컴퓨터를 벗어나지 않습니다.
인코더, 디코더, 변환기, 유효성 검사기 — 모든 워크플로우 지원.
Drag-and-drop any image. Get a data URI ready to paste into HTML, CSS, or JSON.
Paste any Base64 string. Preview and download the decoded image instantly.
Encode any UTF-8 text. Standard or URL-safe.
Any file type — PDF, ZIP, font, binary.
Decode JWT tokens, API headers, config values.
Recover original files from Base64 strings.
Decode and export as lossless PNG.
Convert with adjustable quality.
Modern format, smaller file sizes.
Check if a string is valid Base64.
Calculate encoded output size before embedding.
Get HTML/CSS embed code in one click.
Complete guide to Base64 encoding and RFC 4648.
모든 작업이 브라우저 네이티브 API에서 실행됩니다. 데이터가 탭을 벗어나지 않습니다.
파일을 드래그하거나 문자열을 붙여넣거나 이미지를 업로드합니다. 로컬에 유지됩니다.
const file = input.files[0];
FileReader, atob/btoa, Canvas가 인코딩을 처리합니다 — 모든 브라우저에 내장되어 있습니다.
const b64 = btoa(binary);
문자열을 복사하거나 파일을 다운로드합니다. 네트워크 요청 없음.
// no uploads. ever.
background-image: url('data:image/png;base64,…')를 사용하세요.+와 /를 사용합니다. URL-safe 버전(RFC 4648 §5)은 이를 -와 _로 대체합니다.