Skip to content

Latest commit

 

History

History
127 lines (86 loc) · 5.19 KB

File metadata and controls

127 lines (86 loc) · 5.19 KB

🔗 URL Encode / Decode

Percent-encode text for use in URLs and decode URL-encoded strings back to plain text. Component or full-URI mode, UTF-8 safe. Runs entirely in your browser.

Live demo MIT No dependencies

English · Türkçe


English

Percent-encode text for use in URLs and decode URL-encoded strings back to plain text. Component or full-URI mode, UTF-8 safe. Runs entirely in your browser.

  • Zero dependencies — one file, no build step, no framework.
  • 🔒 100% private — everything runs in your browser; nothing you type ever leaves the page.
  • 🌍 Bilingual — English / Türkçe toggle built in.

▶ Try it live

tagmachan.com/url-encoder.tagox

🧩 Embed it on your own site

Recommended — one line, always up to date. Paste this where you want the tool to appear. The script is served from tagmachan.com, so you always get the latest version and never host anything yourself:

<script src="https://tagmachan.com/embed.js"
        data-tool="url-encoder"
        data-title="URL Encode / Decode" async></script>

That's it. The script drops the tool in, auto-resizes it to fit, and adds a small "powered by tagmachan.com" link underneath.

Prefer a plain iframe? (no external script)
<iframe src="https://tagmachan.com/url-encoder.tagox?embed"
        title="URL Encode / Decode"
        width="100%" height="560" loading="lazy"
        style="border:1px solid #1e1e1e;border-radius:10px"></iframe>

To let it auto-resize, listen for the height the page posts:

<script>
  addEventListener('message', function (e) {
    if (e.origin === 'https://tagmachan.com' && e.data && e.data.tagmachanEmbed)
      document.querySelector('iframe[title="URL Encode / Decode"]').style.height = e.data.height + 'px';
  });
</script>

💾 Self-host instead

Want to run it fully on your own domain, offline? Download index.html — it is a single self-contained file (HTML + CSS + JS inlined). Open it in any browser or drop it on any static host.

🛠️ Part of ~/tools

One of a dozen browser-based security & developer utilities at tagmachan.com/tools.


Türkçe

Metni URL'lerde kullanmak için percent-encode edin ve URL-encoded dizeleri düz metne geri çözün. Component veya tam URI modu, UTF-8 uyumlu. Tamamen tarayıcınızda çalışır.

  • Sıfır bağımlılık — tek dosya, derleme yok, framework yok.
  • 🔒 %100 gizli — her şey tarayıcınızda çalışır; yazdığınız hiçbir şey sayfadan çıkmaz.
  • 🌍 İki dilli — dahili English / Türkçe geçişi.

▶ Canlı deneyin

tagmachan.com/url-encoder.tagox

🧩 Kendi sitenize gömün

Önerilen — tek satır, her zaman güncel. Aracın görünmesini istediğiniz yere şunu yapıştırın. Script tagmachan.com üzerinden servis edilir; böylece hep en güncel sürümü alırsınız ve hiçbir şeyi kendiniz barındırmazsınız:

<script src="https://tagmachan.com/embed.js"
        data-tool="url-encoder"
        data-title="URL Encode / Decode" async></script>

Hepsi bu. Script aracı yerleştirir, boyunu içeriğe göre otomatik ayarlar ve altına küçük bir "powered by tagmachan.com" bağlantısı ekler.

Düz iframe mi tercih edersiniz? (harici script yok)
<iframe src="https://tagmachan.com/url-encoder.tagox?embed"
        title="URL Encode / Decode"
        width="100%" height="560" loading="lazy"
        style="border:1px solid #1e1e1e;border-radius:10px"></iframe>

Otomatik boyutlanması için sayfanın gönderdiği yüksekliği dinleyin:

<script>
  addEventListener('message', function (e) {
    if (e.origin === 'https://tagmachan.com' && e.data && e.data.tagmachanEmbed)
      document.querySelector('iframe[title="URL Encode / Decode"]').style.height = e.data.height + 'px';
  });
</script>

💾 Kendiniz barındırın

Tamamen kendi alan adınızda, çevrimdışı çalıştırmak mı istiyorsunuz? index.html dosyasını indirin — tek başına çalışan tek bir dosyadır (HTML + CSS + JS gömülü). Herhangi bir tarayıcıda açın veya herhangi bir statik sunucuya koyun.

🛠️ ~/tools'un parçası

tagmachan.com/tools adresindeki bir düzine tarayıcı tabanlı güvenlik & geliştirici aracından biri.


© 2026 Tağmaç Han (Tagoletta) · MIT License · URL-Encoder-Decoder