How do I write an emoji in HTML?
Three ways — all equivalent:
- Paste the emoji directly into your HTML:
<p>🎉</p> - Use a decimal numeric entity:
🎉 - Use a hex numeric entity:
🎉
Always set <meta charset="utf-8"> in the <head> so the browser decodes them correctly.