Escape HTML entities, safely
The HTML Encoder/Decoder converts characters into their HTML entity form (& → &, < → <, quotes into their named or numeric equivalents) and back. It is the correct way to display code on a page or to embed user text inside HTML without creating injection holes.
Four characters break HTML: <, >, & and quotes. Rendering user input without escaping them is the textbook cross-site scripting vulnerability; pasting code samples into a CMS without entities mangles them into invisible markup. Encoding solves both directions of the problem deterministically.
Conversion runs locally in your browser with both named-entity and numeric modes. Paste the text or snippet, choose a direction, and copy the safe output — the fastest way to make arbitrary text survive inside HTML.
Like every Piclizer tool, this one runs entirely in your browser — your files stay on your device.