Encode/Decode HTML Entities
Enter text to encode special characters or HTML entities to decode.
Encodes only essential HTML characters: & < > " '
0 characters
0 characters
About HTML Entities
HTML entities represent special characters that have meaning in HTML or cannot be easily typed. They can be named (e.g., &), decimal (e.g., &), or hexadecimal (e.g., &).
& = &< = <> = >" = "© = ©€ = €What are HTML Entities?
HTML entities are special codes used to display reserved characters in HTML that would otherwise be interpreted as code.
For example, < becomes < and & becomes &. This prevents XSS attacks and ensures special characters display correctly in web pages.