Base64 Converter

Input
Result
How to use
  1. 1.

    Paste your text into the Input panel

  2. 2.

    Click Encode to convert to Base64, or Decode to reverse it

  3. 3.

    Copy the result with the Copy button

Common uses
  • Encoding credentials in HTTP Basic Auth headers

  • Embedding small images directly in CSS or HTML

  • Passing binary data through text-based APIs

  • Storing binary data in a JSON field

Base64 encodes binary data as ASCII text using a 64-character alphabet. It increases data size by ~33% but makes binary-safe transmission possible over channels that only support text.