Herramienta browser-only
Base64: codificar y decodificar
Base64 convierte bytes a texto para transporte, pero no protege datos.
Herramienta browser-only
Base64 convierte bytes a texto para transporte, pero no protege datos.
Base64 is useful when binary data needs to travel through text-only systems. It is reversible by design, so it should never be used as a privacy or security layer.
Base64 conversion runs locally in your browser on this static page.
No. Base64 is a reversible encoding format. It provides no secrecy.
Base64 represents binary data using text characters, which usually increases size by about one third.
Use Base64 when binary data must travel through text-only channels, such as JSON payload fields, data URLs, or legacy transport layers.
Input may be invalid Base64, corrupted in transit, or represent binary bytes that are not valid UTF-8 text.
Yes. Proper Base64 encoding and decoding preserves bytes exactly, but it does not add integrity checks or encryption.