--- title: "HTML Entities Reference" description: "Free HTML entities reference. Search 40+ common entities by name, character, description, or tag. Copy named, numeric, or hex form instantly." url: https://devzap.io/tools/html-entities/ category: html status: live pricing: Free --- # HTML Entities Reference > Searchable list of HTML entities. Copy named, numeric, or hex form with one click. Free HTML entities reference. Search 40+ common entities by name, character, description, or tag. Copy named, numeric, or hex form instantly. ## How to use 1. **Search any entity** — Type a name, character, description, or tag. Results filter live. 2. **Copy in any format** — Click any cell — named, numeric, or hex — to copy. A toast confirms. ## FAQ ### When should I use HTML entities vs Unicode characters? Modern UTF-8 encoded HTML can include most characters directly. Use entities for the five reserved characters (&, <, >, ", ') in attributes and text where they could be misinterpreted, and for non-breaking spaces or invisible characters where readability matters. ### What's the difference between named, numeric, and hex forms? All three encode the same character. Named (&) is human-readable but limited to entities the spec defines. Numeric (&) and hex (&) work for any Unicode codepoint and are more verbose. ### Why does   matter?   (non-breaking space) prevents line breaks between words you want to keep together — like 'page 1' or '5 km'. Designers also use it for visual spacing tweaks; that's a code smell, but it works. ### Do entities work everywhere? Inside HTML content and attributes, yes. They do NOT work inside