Base64 എൻകോഡ്/ഡീകോഡ് (Text, File പിന്തുണ)

Base64 decode, Base64 encode, quick conversion എന്നിവ ഒരൊറ്റ സ്ക്രീനിൽ ഉപയോഗിക്കുക.

text, files, Data URLs എന്നിവ browser-ൽ തന്നെ സുരക്ഷിതമായി convert ചെയ്യുക.

server upload ഇല്ല (browser-only processing)
Data URL പിന്തുണയ്ക്കുന്നു
UTF-8 ടെക്സ്റ്റ് ഔട്ട്പുട്ട്

പരിവർത്തന ഉപകരണം

മുകളിൽ നിന്ന് mode (Encode / Decode / Auto Detect), input type (Text / File) എന്നിവ മാറ്റുക.

input data browser-ലുതന്നെ തുടരുന്നു; upload ചെയ്യുന്നില്ല.

conversion നടത്താൻ Ctrl / Cmd + Enter അമർത്തുക.

ഉദാഹരണങ്ങൾ

text encode ചെയ്യുക

ഇൻപുട്ട്

hello

ഔട്ട്പുട്ട്

aGVsbG8=

Data URL decode ചെയ്യുക

ഇൻപുട്ട്

data:text/plain;base64,44GT44KT44Gr44Gh44Gv

ഔട്ട്പുട്ട്

こんにちは

എങ്ങനെ ഉപയോഗിക്കാം

  1. Auto Detect ഉപയോഗിച്ച് തുടങ്ങി text നൽകുകയോ file തിരഞ്ഞെടുക്കുകയോ ചെയ്യുക.
  2. ആവശ്യമായപ്പോൾ Encode അല്ലെങ്കിൽ Decode mode manually മാറ്റുക.
  3. conversion കഴിഞ്ഞ് ഫലം copy ചെയ്യുകയോ download ചെയ്യുകയോ ചെയ്യുക.

Base64-ലേക്ക് encode ചെയ്യുക

  • text അല്ലെങ്കിൽ files Base64-ലേക്ക് മാറ്റുക.
  • output format തിരഞ്ഞെടുക്കുക: Base64 മാത്രം അല്ലെങ്കിൽ Data URL (MIME സഹിതം).

Base64 decode ചെയ്യുക

  • spaces അല്ലെങ്കിൽ line breaks ഉള്ള Base64 decode ചെയ്യുക.
  • URL-safe Base64 (-, _) പിന്തുണയ്ക്കുന്നു.
  • decoded data-ക്ക് UTF-8 text output അല്ലെങ്കിൽ binary download തിരഞ്ഞെടുക്കുക.

Data URL split ചെയ്യുക

  • data:...;base64, header, payload എന്നിവ സ്വയം split ചെയ്യുന്നു.
  • MIME, Base64 payload എന്നിവ വേർതിരിച്ച് one-click copy സഹിതം കാണിക്കുന്നു.

FAQ

decode ചെയ്ത Japanese text garbled ആയി കാണുന്നു

"Display as text (UTF-8)" ആദ്യം ഉപയോഗിക്കുക. decoded data binary ആണെങ്കിൽ "Treat as binary (download)" ആയി മാറ്റുക.

Data URLs (data:image/...;base64,) പിന്തുണയ്ക്കുമോ?

അതെ. tool സ്വയം data:*;base64, header, payload എന്നിവ വേർതിരിച്ച് MIME type കാണിക്കും.

files upload ചെയ്യുമോ?

ഇല്ല. conversion മുഴുവനും browser-ലാണ് നടക്കുന്നത്; files ഒരിക്കലും upload ചെയ്യില്ല.

line breaks ഉള്ള Base64 decode ചെയ്യാനാകുമോ?

അതെ. "Ignore whitespace and line breaks" enable ചെയ്താൽ line-broken Base64 decode ചെയ്യാം.

Base64URL (-, _) പിന്തുണയ്ക്കുമോ?

അതെ. "Accept URL-safe Base64 (- and _)" enable ചെയ്യുക.

കുറിപ്പുകൾ

  • decoded content text ആയി കാണിക്കുമ്പോൾ UTF-8 ഉപയോഗിക്കും. original data മറ്റൊരു encoding ഉപയോഗിച്ചാൽ text garbled ആയി തോന്നാം.
  • browser memory limits അനുസരിച്ച് വലിയ files കൂടുതൽ സമയം എടുക്കാം.