Encodage/Décodage Base64
UTF-8 correct, variante URL-safe et prise en charge de fichiers
Pourquoi nous choisir
Confidentiel par conception
Votre saisie est traitée en toute sécurité et jamais vendue. Les outils côté client ne quittent jamais votre navigateur.
Instantané et gratuit
Sans installation ni attente. Des résultats en quelques secondes, dans votre navigateur, sur tout appareil.
Gratuit pour toujours
Sans inscription, sans filigrane, sans limite. Tous les outils côté client sont libres d’utilisation.
Questions fréquentes
Why do other tools garble Chinese/emoji text?⌄
JavaScript’s raw btoa() only handles Latin-1. We encode text to UTF-8 bytes first (TextEncoder), so Chinese, Japanese, emoji and every other script round-trip correctly.
What is URL-safe Base64?⌄
A variant (RFC 4648 §5) that replaces + with -, / with _ and drops = padding, so the result can live inside URLs, filenames and JWTs without escaping. Toggle the URL-safe checkbox to encode or decode it.
Is Base64 encryption?⌄
No — it is an encoding, not encryption. Anyone can decode it instantly. Use it for data transport and embedding, never for hiding secrets.