HTML Entity for Dagger (†)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2020

What You'll Learn

How to display the Dagger symbol (†) in HTML using named, hexadecimal, decimal, and CSS entity methods. The Dagger is U+2020 in the General Punctuation block (U+2000–U+206F) and is widely used for footnotes, citations, reference markers, and editorial notation.

This character can be rendered with the named entity †, hexadecimal †, decimal †, or CSS escape \2020 in the content property. Pair with the double dagger (‡) via ‡ for second footnotes.

⚡ Quick Reference — Dagger

Unicode U+2020

General Punctuation block

Hex Code †

Hexadecimal reference

HTML Code †

Decimal reference

Named Entity †

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2020
Hex code       †
HTML code      †
Named entity   †
CSS code       \2020
1

Complete HTML Example

This example demonstrates the Dagger symbol (†) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2020";
  }
 </style>
</head>
<body>
<p>Dagger using Hexadecimal: &#x2020;</p>
<p>Dagger using HTML Code: &#8224;</p>
<p>Dagger using HTML Entity: &dagger;</p>
<p id="point">Dagger using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Dagger entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Dagger symbol rendered live in different contexts:

Footnote This claim needs citation†
Sequence First†   Second‡
Obituary John Smith † 2020
Large glyph
Monospace refs &dagger; &#x2020; &#8224; \2020

🧠 How It Works

1

Named HTML Entity

&dagger; is the semantic named entity for the Dagger—the easiest to read in source HTML.

HTML markup
2

Hexadecimal Code

&#x2020; uses the Unicode hexadecimal value 2020. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8224; uses the decimal Unicode value 8224 to display the same character.

HTML markup
4

CSS Entity

\2020 is used in CSS stylesheets, particularly in the content property of ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Dagger: . Unicode U+2020 is in General Punctuation. Use &Dagger; for the double dagger (‡).

Use Cases

The Dagger symbol (†) is commonly used in:

📄 Footnotes & citations

Mark the first footnote or reference in articles, books, and academic papers.

📚 Academic & editorial

Reference markers, endnotes, and annotations in journals, theses, and published works.

✍️ Obituaries

Indicate date of death (e.g. John Smith † 2020) in obituaries and genealogical content.

🔬 Scientific writing

Footnote markers in research papers, specifications, and technical documentation.

⚖️ Legal & formal

Citations and reference indicators in legal texts, contracts, and formal correspondence.

🔤 Symbol references

Unicode tables, HTML entity guides, and typography documentation.

💡 Best Practices

Do

  • Use &dagger; for readable source markup
  • Pair † with ‡ (&Dagger;) for first and second footnotes
  • Link footnotes with aria-describedby or visible note text
  • Use \2020 only inside CSS content
  • Pick one style (named / hex / decimal) per project

Don’t

  • Confuse † (dagger) with ‡ (double dagger) in footnote order
  • Rely on the symbol alone without accessible footnote text
  • Put CSS escape \2020 in HTML text nodes
  • Use HTML entities in JS (use \u2020 instead)
  • Mix entity styles randomly in one file

Key Takeaways

1

Four ways to render † in HTML

&dagger; &#x2020; &#8224;
2

For CSS stylesheets, use the escape in the content property

\2020
3

Unicode U+2020 — General Punctuation (U+2000–U+206F)

4

Prefer &dagger; for readability in footnote-heavy content

5

Use ‡ (&Dagger;) for the second footnote when needed

❓ Frequently Asked Questions

Use &dagger; (named), &#x2020; (hex), &#8224; (decimal), or \2020 in CSS content. All produce †.
U+2020 (DAGGER). General Punctuation block. Hex 2020, decimal 8224. Commonly used for footnotes and citations.
In footnotes, citations, reference markers, editorial and academic content, obituaries and death dates, and any content that needs a first footnote indicator (often with double dagger ‡ for the second).
HTML entities (&dagger;, &#8224;, or &#x2020;) go in markup. The CSS escape \2020 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers.
Dagger (U+2020) is typically the first footnote; Double Dagger (U+2021) is the second. Use &dagger; for † and &Dagger; or &#x2021; for ‡.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, math operators, arrows, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful