TPToolpazar

Global Araç

Html Encoder Decoder

Çözme işlemi isimli varlıkları (&, <, vb.), sayısal (') ve onaltılık (') varlıkları kapsar — tarayıcıların ve çoğu CMS düzenleyicinin ürettiği her şeyi karşılar.

Encode HTML special characters to entities (& → &amp;, < → &lt;, etc.) or decode them back. Three encoding levels: minimal (just the characters HTML actually treats specially), named + non-ASCII numeric, or paranoid (every non-alphanumeric).

Nasıl Kullanılır

  1. Pick Encode or Decode.
  2. Pick encoding level if encoding.
  3. Paste your text — output updates live.
  4. Copy the result.

Sık Sorulan Sorular

When do I need encoding level 'all'?

When inserting user content into HTML attribute values without escape mistakes, or into older email clients that don't reliably handle UTF-8. For modern web pages with proper UTF-8 + escaping, minimal is usually enough.

What's the difference between named and numeric entities?

Named (&amp;copy;) is human-readable but not all characters have names. Numeric (&amp;#169;) covers every Unicode codepoint. Decode handles both — use whichever encoding your destination prefers.