इस टूल में कोई समस्या है?

«HTML एंटिटी डिकोडर ऑनलाइन» के बारे में

यह टूल HTML एंटिटीज को उनके मूल कैरेक्टरों में वापस परिवर्तित करता है। &lt; < बन जाता है, &amp; & बन जाता है, &eacute; é बन जाता है।

जब आप कॉपी की गई सामग्री में HTML-एनकोडेड टेक्स्ट का सामना करते हैं तो उपयोगी।

टूल HTML5 विनिर्देशन में परिभाषित सभी नामित एंटिटीज का समर्थन करता है।

इस टूल का उपयोग कैसे करें

How to decode HTML entities back to plain characters

  1. Paste the HTML-encoded text

    Drop the entity-encoded string into the "Text" field. Both named entities (`&amp;`, `&lt;`, `&copy;`) and numeric entities (`&#39;`, `&#x27;`) are recognised.

  2. Press Run

    Result returns a single `decoded` field. Examples: `&lt;p&gt;Hi&amp;ya&lt;/p&gt;` → `<p>Hi&ya</p>`; `caf&eacute;` → `café`. Unknown entities (typos, made-up ones) pass through unchanged.

  3. Common upstream sources

    RSS feeds, email-body HTML, scraped page text, and JSON exports that double-escape are typical inputs. After decoding, the result is plain Unicode — not HTML — so don't re-embed it in HTML without re-encoding via `html-entity-encoder` first.

  4. Decode once, not twice

    Don't pipe the output back into the decoder thinking it might still have hidden entities. If a string was double-encoded upstream you'll need to decode twice, but only after confirming with a sample — blindly double-decoding mangles legitimate `&` characters.