Base64

Base64 एनकोडिंग & डिकोडिंग

ऑनलाइन Base64 एनकोड और डिकोड करने का सबसे आसान तरीका

मुफ्त, सुरक्षित और पूरी तरह आपके ब्राउज़र में चलता है।

// Input
"Hello, World!"
 
// Base64 Encoded
"SGVsbG8sIFdvcmxkIQ=="

2Base64 क्यों?

बिजली की तेज़ी

सब कुछ आपके ब्राउज़र में तुरंत होता है।

🔒

100% सुरक्षित

आपका डेटा कभी आपके डिवाइस से बाहर नहीं जाता।

💻

डेवलपर फ्रेंडली

UTF-8 सपोर्ट के साथ साफ़ इंटरफेस।

🎁

पूरी तरह मुफ्त

कोई पंजीकरण नहीं, कोई सीमा नहीं, कोई छिपे शुल्क नहीं।

Base64 क्या है?

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It converts binary data into a set of 64 printable characters (A-Z, a-z, 0-9, +, and /), with = used for padding.

यह कैसे काम करता है?

Base64 encoding works by taking groups of three bytes (24 bits) of binary data and splitting them into four groups of six bits each. Each 6-bit group is then mapped to one of 64 printable ASCII characters.

Base64 क्यों?

Base64 encoding is essential in many areas of software development. It is used to embed images in HTML/CSS, transmit binary data over text-based protocols like email (MIME) and HTTP, store data in JSON/XML formats, and encode authentication credentials.

सामान्य उपयोग

  • Embedding images in HTML/CSS using data URIs
  • Sending email attachments via MIME encoding
  • Encoding binary data in JSON and XML payloads
  • HTTP Basic Authentication credentials
  • Storing binary data in text-based databases
  • Data transfer between different systems and platforms