Monu Tools

URL kódoló / dekódoló

URL-ek és URL-komponensek százalékos kódolása és dekódolása, UTF-8 biztosan.

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

  1. 01

    Illeszd be a szöveget vagy az URL-t.

  2. 02

    Válaszd a kódolást vagy dekódolást, valamint a komponens vagy teljes URL hatókört.

  3. 03

    Másold ki az eredményt.

What percent-encoding does

URLs are only allowed to contain a limited set of characters, so anything outside that set, spaces, accented letters, and reserved symbols like & ? / =, has to be escaped. Percent-encoding replaces each such byte with a percent sign and its two-digit hexadecimal value, so a space becomes %20 and an ampersand becomes %26.

This tool encodes text and URLs to percent-encoded form and decodes them back. It is built on the browser's standard encodeURIComponent and encodeURI functions, so the output matches exactly what your own JavaScript would produce, and it is UTF-8 safe for international text.

Encoding and decoding run entirely in your browser, so nothing you paste is sent to a server, which is reassuring when a URL contains tokens or query parameters you would rather not share.

Component mode vs full URL

The scope toggle matters. Component mode (encodeURIComponent) escapes reserved characters like & = ? / and is what you want for a single query-string value or path segment. Full-URL mode (encodeURI) leaves the structural characters intact so a complete URL stays usable.

Common mistakes to avoid

A common mistake is encoding an entire URL with component mode, which escapes the :// and ? and breaks the link. Another is double-encoding, where an already-encoded string is encoded again and %20 turns into %2520. When in doubt, decode first to see the raw value.

The plus-sign quirk in query strings

There is also a historical quirk in query strings: form submissions encode a space as a plus sign, while percent-encoding uses %20. Both are seen in the wild, so decoders generally accept either.

Gyakran ismételt kérdések

Komponens vagy teljes URL?

A „Komponens” (encodeURIComponent) az olyan fenntartott karaktereket escapeli, mint a & = ? / a lekérdezési értékekhez. A „Teljes URL” (encodeURI) megőrzi az URL szerkezetét.

Miért nem sikerült a dekódolás?

A hibás százalékos szekvenciák (mint egy magányos %) nem dekódolhatók. Ellenőrizd a bemenetet, vagy kódold újra először.

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/url-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