HTMLエンティティ エンコード

HTMLまたはテキストを下に貼り付けてエンコードをクリックすると特殊文字がHTMLエンティティにエスケープされます。すべての処理はブラウザ内でローカルに行われます。

コピーしました!

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.