🔤 Base64 인코더/디코더

텍스트를 Base64 형식으로 인코딩하거나 디코딩하세요

About Base64

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used to encode data that needs to be stored or transferred over media designed to handle text.

Common Use Cases:

  • Embedding images in HTML/CSS
  • Encoding email attachments
  • Storing binary data in JSON/XML
  • Data URLs in web development

Features:

  • Client-side encoding/decoding
  • Supports UTF-8 characters
  • Real-time processing
  • Privacy-focused (no server upload)