Codifica e decodifica testo in Base64 β 100% locale, nessun dato inviatoEncode and decode text in Base64 β 100% local, no data sent
Base64 Γ¨ uno schema di codifica che converte dati binari in una sequenza di caratteri ASCII. Γ usato comunemente per trasmettere immagini inline in HTML/CSS (data:image/png;base64,...), per codificare credenziali in HTTP Basic Auth, e per includere dati binari in JSON o Firebase RTDB.
La variante URL-safe sostituisce i caratteri + e / con - e _, rendendo la stringa sicura da inserire in un URL senza encoding aggiuntivo.
Base64 is an encoding scheme that converts binary data into a sequence of ASCII characters. It's commonly used to embed images inline in HTML/CSS (data:image/png;base64,...), to encode credentials in HTTP Basic Auth, and to include binary data in JSON or Firebase RTDB.
The URL-safe variant replaces the + and / characters with - and _, making the string safe to use in a URL without additional encoding.
Base64 Γ¨ una forma di crittografia?Is Base64 a form of encryption?
No. Base64 Γ¨ solo una codifica β chiunque puΓ² decodificarla senza chiavi. Per cifrare dati usa strumenti di crittografia come AES o consulta la pagina HMAC-SHA256.No. Base64 is just an encoding β anyone can decode it without keys. To actually encrypt data, use encryption tools like AES, or check out the HMAC-SHA256 page.
PerchΓ© il Base64 Γ¨ piΓΉ lungo dell'originale?Why is Base64 longer than the original?
Base64 usa 6 bit per carattere invece degli 8 bit standard, quindi ogni 3 byte originali diventano 4 caratteri Base64 β un aumento del 33% circa.Base64 uses 6 bits per character instead of the standard 8, so every 3 original bytes become 4 Base64 characters β roughly a 33% size increase.