Codificatore e decodificatore Base32
Codifica e decodifica stringhe Base32: usate nei segreti TOTP, nei record DNS e negli identificatori che non distinguono maiuscole e minuscole.
Come usare questo strumento
- 1
Choose 'Encode' to turn text into Base32, or 'Decode' to turn Base32 back into text, using the mode dropdown.
- 2
Type or paste your input into the text box — UTF-8 text when encoding, or a Base32 string when decoding.
- 3
Read the result in the gray output panel below; it updates instantly as you type, with no button to press.
- 4
Select and copy the output text to use it elsewhere.
Che cos'è il codificatore e decodificatore Base32?
Base32 codifica i dati binari usando 32 caratteri alfanumerici (A-Z, 2-7). A differenza di Base64, non distingue tra maiuscole e minuscole ed evita i caratteri visivamente confondibili (0/O, 1/I/l), il che lo rende adatto alla trasmissione scritta a mano o pronunciata. È usato soprattutto nelle chiavi segrete di 2FA e nei record DNS.
Casi d'uso comuni
Inspecting a TOTP/2FA setup string by decoding the Base32 secret an authenticator app expects.
Encoding a short identifier into a case-insensitive form safe to drop into a DNS label or subdomain.
Hand-checking the output of a server library against a known-good Base32 implementation while debugging.
Producing tokens or codes meant to be read aloud or typed without confusing 0/O or 1/I/l.
Decoding a Base32 string copied from a config file or QR-code payload to see the underlying text.
Teaching or learning how bit-level encodings group data, by watching how input maps to 5-bit chunks.
Domande frequenti
Perché Base32 invece di Base64?▼
Strumenti correlati
Decodificatore di JWT
Decodifica i JSON Web Token (JWT) all'istante. Viene eseguito nel suo browser: i token non lasciano mai il suo dispositivo, quindi è sicuro usarlo con segreti di produzione.
Formattatore e validatore di JSON
Formatta, valida e minifica JSON online. Funziona interamente nel suo browser: i suoi dati non lasciano mai il suo dispositivo.
Formattatore di XML
Formatta e abbellisce i documenti XML. Utile per SOAP, sitemap, feed RSS e file di configurazione.
Codificatore e decodificatore Base64
Codifica le stringhe in Base64 o decodifica il Base64 in testo. Rispetta la sua privacy: viene eseguito nel suo browser.
Codificatore e decodificatore di URL
Converte il testo in codifica sicura per URL (codifica percentuale) e viceversa. Utile per stringhe di query, reindirizzamenti e flussi OAuth.
Codificatore e decodificatore di entità HTML
Converte i caratteri speciali in entità HTML (&, <, ecc.) e viceversa. Utile per incorporare testo in HTML in modo sicuro.