🔄 Base64 डीकोड — Base64 को टेक्स्ट में ऑनलाइन बदलें
Decode any Base64 string back to plain text or download a file. Also encodes text and files to Base64. Free, instant, no signup.
Paste any Base64 string into the input area and click Decode. The tool instantly decodes it back to readable text. Switch to File mode to decode Base64-encoded files. Works for Base64-encoded images, PDFs, and any binary data.
How to Use
Choose mode
Select Text mode for plain text encoding/decoding, or File mode to encode any file.
Enter your input
Type or paste text, then click Encode or Decode. For files, drag and drop or click to browse.
Copy the output
Click Copy to copy the Base64 output to your clipboard for use in your project.
Frequently Asked Questions
संपूर्ण गाइड: Base64 Encoder और Decoder
Base64 Encoder क्या है?
Base64 एक encoding scheme है जो binary data को ASCII text में convert करता है। यह उन situations के लिए बनाया गया है जहाँ binary data को text-based protocols जैसे HTTP headers, JSON fields, या email attachments में embed करना पड़ता है। Base64 हर 3 bytes को 4 printable characters में convert करता है।
Common use cases हैं: images को CSS या HTML में inline embedding, API authentication tokens, data URIs, और browser localStorage में binary data store करना। यह encryption नहीं है — कोई भी Base64 string को decode कर सकता है।
कैसे उपयोग करें
- Text या data paste करें input field में।
- Encode या Decode button click करें अपनी जरूरत के अनुसार।
- Output copy करें clipboard button से।
- URL-safe mode use करें जब Base64 को URL parameters में use करना हो।
Pro Tips
- Base64 encoded data original से ~33% बड़ा होता है।
- URL-safe Base64 में
+को-और/को_से replace किया जाता है। - Images को Base64 में convert करने से HTTP requests कम होते हैं लेकिन file size बढ़ती है।