Base64 Kodlayıcı / Çözücü

Base64 dizelerini çevrimiçi olarak kodlayın ve çözün

Base64 Kodlayıcı / Çözücü Nasıl Kullanılır

  1. 1Kodlamak mı yoksa Çözmek mi istediğinizi seçin
  2. 2Giriş alanına metninizi girin
  3. 3Sonuç anında çıkış alanında görünür
  4. 4Sonucu kopyalamak için "Copy"e tıklayın
  5. 5Giriş ve çıkışı hızlıca değiştirmek için "Swap" kullanın

Base64 Kodlayıcı / Çözücü Hakkında

Base64, veri iletiminde, e-posta kodlamasında ve web API'lerinde yaygın olarak kullanılan bir ikili-metin kodlama şemasıdır. Aracımız metni Base64'e kodlamayı veya Base64 dizelerini çözmeyi kolaylaştırır.

Base64 kodlaması görüntüler için veri URI'lerinde, HTTP Basic Authentication'da ve JSON/XML'e ikili veri gömmede kullanılır.

Base64 Kodlayıcı / Çözücü Temel Özellikleri

  • Fast and accurate Base64 Encoder processing
  • No installation required — works in browser
  • Free to use with no limitations
  • Privacy-focused — data never leaves your device
  • Mobile and desktop compatible
  • Instant results with live preview

Desteklenen Formatlar

Giriş Formatları

Plain textUTF-8 stringsBase64-encoded strings

Çıkış Formatları

Base64 (standard RFC 4648)Decoded plain text

For encoding binary files (images, PDFs), use the Image to Base64 tool instead.

Örnekler

Encode a string to Base64

Useful for HTTP Basic Auth headers.

Giriş

user:secretpassword

Çıkış

dXNlcjpzZWNyZXRwYXNzd29yZA==

Decode a Base64 JWT payload

Base64 decode the middle segment of a JWT token.

Giriş

eyJ1c2VySWQiOjEyMywicm9sZSI6ImFkbWluIn0=

Çıkış

{"userId":123,"role":"admin"}

Yaygın Kullanım Senaryoları

  • Professional Base64 Encoder tasks
  • Quick everyday calculations
  • Educational purposes and learning
  • Business and workplace productivity
  • Personal projects and hobbies
  • Decoding Base64 strings received from third-party APIs

Sorun Giderme

Invalid Base64 string — incorrect padding

Çözüm

Base64 strings must have a length that is a multiple of 4. Missing = padding characters at the end cause this error. Add one or two = characters to fix it.

Output contains garbled characters

Çözüm

The decoded text may be binary data, not readable text. If you are decoding an image or file, use the Base64 to Image tool instead.

URL-safe Base64 does not decode correctly

Çözüm

URL-safe Base64 uses - and _ instead of + and /. Enable the URL-safe option or replace those characters manually before decoding.

Sıkça Sorulan Sorular

What is Base64 encoding?

Base64 is a binary-to-text encoding scheme that represents binary data using 64 ASCII characters. It's used to safely transmit data over text-based protocols.

When should I use Base64?

Use Base64 when you need to embed binary data in text formats like JSON or XML, or when transmitting data over channels that only support text.

Does Base64 encrypt my data?

No. Base64 is encoding, not encryption. Anyone with a Base64 decoder can read the original content. Never use Base64 to protect sensitive data.

Why does Base64 output end with == or =?

Base64 pads output to a multiple of 4 characters using = signs. One or two = characters may appear depending on the input length.

Can I encode images to Base64?

For images, use the dedicated Image to Base64 tool which handles binary file input. This tool is optimized for text strings.

What is URL-safe Base64?

URL-safe Base64 replaces + with - and / with _ so the encoded string can be safely used in URLs and filenames without percent-encoding.