Encode and decode text or files to/from Base64 format
Encode या Decode mode select करें
Text mode के लिए input box में text enter करें या File mode enable करके file upload करें
"Encode to Base64" या "Decode from Base64" button पर click करें
Result को copy करें या download करें
Base64 एक encoding scheme है जो binary data को ASCII text format में convert करता है। यह 64 characters (A-Z, a-z, 0-9, +, /) का उपयोग करता है।
Text को पहले UTF-8 bytes में convert किया जाता है, फिर हर 3 bytes को 4 Base64 characters में encode किया जाता है।
Text: "Hello World!"
Base64: SGVsbG8gV29ybGQh
Text: "नमस्ते"
Base64: 4KSo4KSu4KS44KWN4KSk4KWH
Sponsored Content