- What's the difference between named and numeric entities?
- Both represent the same character. Named (&, <) are readable; numeric (&, &) are universal — every parser supports numeric, not all support less-common named ones.
- Does it handle all HTML5 named entities?
- Yes — the full HTML5 entity set including less-common ones like ⨯ and „. Obsolete HTML4-only entities are also recognized.
- What about entities inside attributes?
- Yes. Attribute values often contain & or " that need decoding — the tool handles both element content and attribute context.
- Will it decode already-decoded text?
- Idempotent by default — text without entity sequences passes through unchanged. No double-decoding bugs.