इस टूल में कोई समस्या है?
«HTML एंटिटी डिकोडर ऑनलाइन» के बारे में
यह टूल HTML एंटिटीज को उनके मूल कैरेक्टरों में वापस परिवर्तित करता है। < < बन जाता है, & & बन जाता है, é é बन जाता है।
जब आप कॉपी की गई सामग्री में HTML-एनकोडेड टेक्स्ट का सामना करते हैं तो उपयोगी।
टूल HTML5 विनिर्देशन में परिभाषित सभी नामित एंटिटीज का समर्थन करता है।
इस टूल का उपयोग कैसे करें
How to decode HTML entities back to plain characters
Paste the HTML-encoded text
Drop the entity-encoded string into the "Text" field. Both named entities (`&`, `<`, `©`) and numeric entities (`'`, `'`) are recognised.
Press Run
Result returns a single `decoded` field. Examples: `<p>Hi&ya</p>` → `<p>Hi&ya</p>`; `café` → `café`. Unknown entities (typos, made-up ones) pass through unchanged.
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.
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.