Monu Tools

Base64 kódoló és dekódoló

Szöveg kódolása Base64-be, vagy Base64 visszadekódolása szöveggé. UTF-8 biztos, automatikus iránymeghatározással.

Így használd a következőt: Base64 kódoló

  1. 01

    Írj szöveget a kódoláshoz, vagy illessz be Base64-et a dekódoláshoz.

  2. 02

    Nyomd meg a Futtatás gombot. Az irány automatikusan felismerésre kerül.

  3. 03

    Másold ki az eredményt a kimeneti panelből.

What Base64 is

Base64 represents binary or text data using just 64 printable ASCII characters (A-Z, a-z, 0-9, plus + and /), encoding every three bytes as four characters. That keeps data intact when it travels through systems that were built for text rather than raw bytes.

Where you see it

You see it everywhere: data URLs that embed an image directly in HTML or CSS, email attachments (MIME), the header and payload of a JSON Web Token, HTTP Basic authentication headers, and many API fields that need to carry binary data as a plain string.

How this tool handles it

This tool encodes text to Base64 and decodes Base64 back to text, choosing the direction automatically. It is UTF-8 safe, so accents, emoji and other Unicode characters survive the round trip without corruption, which the naive built-in browser functions do not guarantee on their own.

Encoding is not encryption

It is important to know what Base64 is not: it is an encoding, not encryption. Anyone can decode it instantly, so it provides zero security. Never use it to hide passwords, tokens or secrets. Its job is safe transport and representation, not confidentiality.

The size cost

Base64 also has a size cost. The encoded output is about 33 percent larger than the original, because four characters stand in for every three bytes. That trade-off is usually worth it for compatibility, but it is why you would not Base64-encode large files when a real binary channel is available.

Runs in your browser

Everything runs in your browser, so the text you paste is never uploaded. To turn an image file into a Base64 data URL instead of plain text, use the dedicated Image to Base64 tool.

Gyakran ismételt kérdések

Hogyan működik az automatikus felismerés?

Ha a bemeneted érvényes Base64-nek tűnik, és olvasható UTF-8 szöveggé dekódolódik, akkor dekódolásra kerül; egyébként kódolásra. Ez lefedi a gyakori eseteket kézi átkapcsolás nélkül.

Biztonságos a nem angol karakterekhez?

Igen. A kódolás és dekódolás UTF-8 biztos, így az emodzsik, ékezetek és más Unicode karakterek helyesen mennek át oda-vissza.

Megvédhetem ezzel a jelszavakat vagy titkokat?

A Base64 kódolás, nem titkosítás. Könnyedén visszafejthető, és semmilyen biztonságot nem nyújt. Soha ne használd érzékeny adatok védelmére.

Források

Eszköz beágyazása

Add hozzá ezt az eszközt a saját weboldaladhoz. Másold ki az alábbi kódrészletet, amely automatikusan naprakész marad.

<iframe src="https://monu.tools/embed/hu/base64-encoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

Kapcsolódó eszközök