Base64 क्या है?
Base64 binary-to-text encoding scheme है। यह तीन bytes को चार printable characters में बदलता है ताकि binary data JSON, email, HTML और URLs जैसे text systems से गुजर सके। Result original data से लंबा होता है, पर portable और predictable रहता है।
Alphabet कैसे काम करता है
Standard alphabet में A-Z, a-z, 0-9, plus, slash और optional equals padding होते हैं। Encoding reversible है: input न बदले तो decoding original bytes को ठीक से recover करती है।
Encoding encryption नहीं है
कोई भी Base64 decode कर सकता है। Passwords, private keys या confidential records को सिर्फ Base64 में रखकर protected न मानें। Secrecy जरूरी हो तो transport के लिए TLS और authenticated encryption उपयोग करें।
खुद आजमाएं
Base64 encoder और Base64 decoder इस्तेमाल करें, फिर पूरी guide पढ़ें।