Monu Tools

Кодувальник / декодувальник HTML-сутностей

Кодуйте текст у HTML-сутності або декодуйте сутності назад у текст, безпечно для UTF-8 і на боці клієнта.

Як користуватися Кодувальник HTML

  1. 01

    Вставте свій текст чи HTML.

  2. 02

    Оберіть «Кодувати» (екранувати спеціальні символи HTML), «Кодувати все» (також екранувати не-ASCII) чи «Декодувати».

  3. 03

    Скопіюйте результат.

What it does

An HTML entity encoder and decoder for escaping special characters so they display as text instead of being interpreted as markup. It converts characters like < and & into entities such as &lt; and &amp;, and decodes them back again.

Encoding and decoding are UTF-8 safe and run entirely in your browser, so nothing you paste is uploaded.

How encoding works

Encoding always escapes the five characters that have special meaning in HTML: & < > " and '. That is what stops a stray < from being read as the start of a tag, or text from accidentally breaking out of an attribute.

An Encode all option additionally turns every non-ASCII character into a numeric entity, which is useful for legacy systems, some email pipelines, or anywhere you need to be sure the output is pure ASCII.

What decoding understands

Decoding understands all three entity forms: named entities like &amp; and &copy;, decimal entities like &#233;, and hexadecimal entities like &#x20AC;. Sequences it does not recognize are left untouched rather than mangled.

Encoding and XSS

Escaping the HTML specials is the core defense against HTML injection and cross-site scripting (XSS): any untrusted text should be encoded before it is placed into a page, so it renders as harmless characters instead of active markup.

Поширені запитання

У чому різниця між «Кодувати» і «Кодувати все»?

«Кодувати» екранує лише п'ять символів, які мають екрануватися в HTML (& < > " '). «Кодувати все» додатково перетворює кожен не-ASCII символ на числову сутність, що корисно для застарілих систем чи електронної пошти.

Які сутності він може декодувати?

Іменовані сутності, як-от &amp; і &copy;, десяткові сутності, як-от &#233;, та шістнадцяткові сутності, як-от &#x20AC;. Невідомі послідовності лишаються без змін.

Чи запобігає він XSS?

Кодування спеціальних символів HTML це основний захист від впровадження розмітки. Завжди кодуйте недовірений текст перед розміщенням його в HTML.

Джерела

Вбудувати цей інструмент

Додайте цей інструмент на власний сайт. Скопіюйте фрагмент нижче; він оновлюється автоматично.

<iframe src="https://monu.tools/embed/uk/html-encoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

Пов'язані інструменти