टेक्स्ट को Base64 में एनकोड करें या Base64 को वापस टेक्स्ट में डिकोड करें. स्वचालित दिशा पहचान के साथ UTF-8 सुरक्षित.
Base64 एनकोडर का उपयोग कैसे करें
एनकोड करने के लिए टेक्स्ट टाइप करें, या डिकोड करने के लिए Base64 पेस्ट करें.
चलाएं दबाएं. दिशा स्वतः पहचानी जाती है.
आउटपुट पैनल से परिणाम कॉपी करें.
Base64 represents binary or text data using just 64 printable ASCII characters (A-Z, a-z, 0-9, plus + and /), encoding every three bytes as four characters. That keeps data intact when it travels through systems that were built for text rather than raw bytes.
You see it everywhere: data URLs that embed an image directly in HTML or CSS, email attachments (MIME), the header and payload of a JSON Web Token, HTTP Basic authentication headers, and many API fields that need to carry binary data as a plain string.
This tool encodes text to Base64 and decodes Base64 back to text, choosing the direction automatically. It is UTF-8 safe, so accents, emoji and other Unicode characters survive the round trip without corruption, which the naive built-in browser functions do not guarantee on their own.
It is important to know what Base64 is not: it is an encoding, not encryption. Anyone can decode it instantly, so it provides zero security. Never use it to hide passwords, tokens or secrets. Its job is safe transport and representation, not confidentiality.
Base64 also has a size cost. The encoded output is about 33 percent larger than the original, because four characters stand in for every three bytes. That trade-off is usually worth it for compatibility, but it is why you would not Base64-encode large files when a real binary channel is available.
Everything runs in your browser, so the text you paste is never uploaded. To turn an image file into a Base64 data URL instead of plain text, use the dedicated Image to Base64 tool.
अक्सर पूछे जाने वाले सवाल
यदि आपका इनपुट वैध Base64 जैसा दिखता है और पठनीय UTF-8 टेक्स्ट में डिकोड होता है, तो इसे डिकोड किया जाता है; अन्यथा इसे एनकोड किया जाता है. यह बिना मैनुअल टॉगल के सामान्य मामलों को कवर करता है.
हां. एनकोडिंग और डिकोडिंग UTF-8 सुरक्षित हैं, इसलिए इमोजी, उच्चारण और अन्य Unicode अक्षर सही ढंग से राउंड-ट्रिप करते हैं.
Base64 एक एनकोडिंग है, एन्क्रिप्शन नहीं. इसे आसानी से उलटा जा सकता है और यह कोई सुरक्षा प्रदान नहीं करता. संवेदनशील डेटा की रक्षा के लिए इसका कभी उपयोग न करें.
इस टूल को एम्बेड करें
इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।
<iframe src="https://monu.tools/embed/hi/base64-encoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>संबंधित टूल
URL और URL घटकों को प्रतिशत-एनकोड और डिकोड करें, UTF-8 सुरक्षित.
JSON Web Token को डिकोड करके उसके हेडर और पेलोड का निरीक्षण करें, मानव-पठनीय समाप्ति और जारी करने के समय के साथ। पूरी तरह आपके ब्राउज़र में चलता है; टोकन कभी अपलोड नहीं होते।
किसी भी टेक्स्ट के SHA-1, SHA-256, SHA-384 और SHA-512 हैश सीधे अपने ब्राउज़र में जनरेट करें.
SHA-1, SHA-256, SHA-384 या SHA-512 का उपयोग करके संदेश और सीक्रेट key के लिए HMAC जनरेट करें, आपके ब्राउज़र में।