도구
홈으로 돌아가기

Base64 인코더

텍스트 또는 파일을 Base64 형식으로 인코딩

디코더로 이동
문자: 0

최대 파일 크기: 5MB | 파일을 여기에 드롭 또는 클릭하여 업로드

문자: 0

About Base64 Encoding

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used when there is a need to encode binary data that needs to be stored and transferred over media that are designed to deal with text.

  • Standard Base64: Uses characters A-Z, a-z, 0-9, +, and / with = padding
  • URL-safe Base64: Replaces + with -, / with _, and removes = padding (RFC 4648)
  • UTF-8 Encoding: Supports all Unicode characters (recommended)
  • ASCII Encoding: Only supports characters 0-127
  • Latin-1 Encoding: Supports characters 0-255