HTML-Entity-Kodierung

Fügen Sie HTML oder Text unten ein und klicken Sie auf Kodieren, um Sonderzeichen als HTML-Entities zu escapen. Die gesamte Verarbeitung erfolgt lokal in Ihrem Browser.

Kopiert!

What is HTML Entity Encoding?

HTML entity encoding converts special characters into their HTML entity equivalents to prevent them from being interpreted as HTML markup. For example:

  • <&lt;
  • >&gt;
  • &&amp;
  • "&quot;
  • '&#39;

This prevents XSS attacks and ensures text displays correctly in HTML documents.