HTML Entity Reference Guide
HTML entities represent characters that either have special meaning in HTML or benefit from explicit encoding. You have three syntax options: Named entity: &name; (e.g., ©) Decimal numeric: &#number; (e.g., ©) Hexadecimal numeric: &#xhexcode; (e.g., ©) With UTF-8 encoding (the only sensible choice in 2026), most special characters can be typed directly. However, certain characters…
