HTML Entity Encoder & Decoder

Escape text into HTML entities and read them back, named where a name exists and numeric otherwise.

Encoded

7 characters become a reference, named where a name exists and &#x…; where one doesn’t.

Encoding always escapes &, <, >, " and ' — the characters that mean something to an HTML parser.

More in the yard