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 (& → &, < → <, 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
- Pick Encode or Decode.
- Pick encoding level if encoding.
- Paste your text — output updates live.
- 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 (&copy;) is human-readable but not all characters have names. Numeric (&#169;) covers every Unicode codepoint. Decode handles both — use whichever encoding your destination prefers.