FreePrivacy totale · Locale · Senza account

Strumenti Base64 per sviluppatori
Codifica, decodifica e converti Base64 nel tuo browser

Codifica, decodifica e converti Base64 nel tuo browser. Nulla lascia il tuo computer — senza upload, senza tracciamento.

Zero richieste al server40+ strumentiOpen source
base64_encodeLIVE
100% Client-side
atob() · btoa() · FileReader
Zero richieste al server
40+ strumenti
40+ strumenti
Encode · decode · convert
Open source
MIT · GitHub
01ALL TOOLS

Tutto ciò di cui hai bisogno per Base64

Codificatori, decodificatori, convertitori, validatori — ogni flusso di lavoro coperto.

Image → Base64

Drag-and-drop any image. Get a data URI ready to paste into HTML, CSS, or JSON.

data:image/png;base64,iVBORw0KGgoAAAA…
Encoder
B64

Base64 → Image

Paste any Base64 string. Preview and download the decoded image instantly.

iVBORw0KGgoAAAA…image.png
Decoder

Text → Base64

Encode any UTF-8 text. Standard or URL-safe.

Encoder

File → Base64

Any file type — PDF, ZIP, font, binary.

Encoder

Base64 → Text

Decode JWT tokens, API headers, config values.

Decoder

Base64 → File

Recover original files from Base64 strings.

Decoder

Base64 → PNG

Decode and export as lossless PNG.

Converter

Base64 → JPEG

Convert with adjustable quality.

Converter

Base64 → WebP

Modern format, smaller file sizes.

Converter

Validator

Check if a string is valid Base64.

Utility

Size Calculator

Calculate encoded output size before embedding.

Utility

Embed Generator

Get HTML/CSS embed code in one click.

Utility

What is Base64?

Complete guide to Base64 encoding and RFC 4648.

Reference
02HOW IT WORKS

Zero contatto con i server. Per design.

Ogni operazione gira sulle API native del browser. I tuoi dati non lasciano mai la scheda.

01

Fornisci l'input

Trascina un file, incolla una stringa o carica un'immagine. Rimane locale.

const file = input.files[0];
02

Il browser codifica

FileReader, atob/btoa e Canvas gestiscono la codifica — integrati in ogni browser.

const b64 = btoa(binary);
03

L'output è tuo

Copia la stringa, scarica il file. Zero richieste di rete effettuate.

// no uploads. ever.
03FAQ

Domande frequenti

I miei dati sono davvero privati?
Sì. Apri DevTools → Rete mentre usi qualsiasi strumento — vedrai zero richieste POST. Tutte le operazioni usano FileReader, atob()/btoa() e Canvas — API del browser che non accedono mai alla rete.
Cos'è la codifica Base64?
Base64 converte dati binari in testo ASCII usando 64 caratteri stampabili. Usato per incorporare immagini in HTML/CSS, trasmettere file in API JSON. La codifica aggiunge ~33% di dimensione. Guida completa
Come incorporo un'immagine in CSS?
Codifica l'immagine con il Codificatore Immagini, poi: background-image: url('data:image/png;base64,…').
Base64 standard vs URL-safe?
Il Base64 standard usa + e / che si rompono negli URL. L'URL-safe (RFC 4648 §5) li sostituisce con - e _.