๐ค HTML Encoder/Decoder
Encode and decode HTML entities to prevent XSS attacks
Input (Plain Text)
Output (HTML Encoded)
Common HTML Entities:
โข & โ & (Ampersand)
โข < โ < (Less than)
โข > โ > (Greater than)
โข " โ " (Double quote)
โข ' โ ' (Single quote)
Decoding accepts the full set of named entities (©, ®, โฆ). Encoding escapes only the five characters that are significant in HTML, so encode โ decode returns your text unchanged.