HTML Entity Encoder/Decoder
Encode special characters to HTML entities or decode entity codes back to their original characters.
&&
<<
>>
""
''
©©
®®
™™
€€
££
¥¥
HTML Entities - Technical Details
HTML entities are used to represent special characters that have meaning in HTML. For example, less-than becomes < and ampersand becomes &. This prevents browsers from interpreting these as HTML markup.
Command-line Alternative
// Common HTML entities < → < > → > & → & " → " ' → '