HTML Entity for Double Dagger (‡)

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

What You'll Learn

How to display the Double Dagger symbol (‡) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2021 in the General Punctuation block (U+2000–U+206F)—also called diesis or double obelisk—used for the second footnote after the single dagger †.

Render it with ‡, ‡, ‡, or CSS escape \2021. Note: † (lowercase) is the single dagger (†); ‡ (uppercase D) is the double dagger (‡).

⚡ Quick Reference — Double Dagger

Unicode U+2021

General Punctuation block

Hex Code ‡

Hexadecimal reference

HTML Code ‡

Decimal reference

Named Entity ‡

Most readable option

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

Complete HTML Example

This example demonstrates the Double 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: "\2021";
  }
 </style>
</head>
<body>
<p>Double Dagger using Hexadecimal: &#x2021;</p>
<p>Double Dagger using HTML Code: &#8225;</p>
<p>Double Dagger using HTML Entity: &Dagger;</p>
<p id="point">Double Dagger using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2021 is supported in all modern browsers; use a font with General Punctuation coverage:

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

👀 Live Preview

See the Double Dagger symbol rendered live in different contexts:

Footnote This claim needs citation‡
Sequence First †   Second ‡
vs single dagger &dagger;   ‡ &Dagger;
Large glyph
Monospace refs &Dagger; &#x2021; &#8225; \2021

🧠 How It Works

1

Named HTML Entity

&Dagger; is the HTML named entity for the Double Dagger (‡)—uppercase D means double; &dagger; is single (†).

HTML markup
2

Hexadecimal Code

&#x2021; uses the Unicode hexadecimal value 2021. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the Double Dagger: . Unicode U+2021 in General Punctuation. Use after single dagger (†) for second footnotes.

Use Cases

The Double Dagger symbol (‡) is commonly used in:

📄 Footnotes & citations

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

📚 Academic & editorial

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

📝 Second-level notes

Follow the single dagger † with ‡ when a passage needs a second footnote or endnote marker.

🔬 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 double-dagger markup
  • Pair † (&dagger;) then ‡ (&Dagger;) for first and second footnotes
  • Link footnotes with aria-describedby or visible note text
  • Use \2021 only inside CSS content
  • Pick one style (named / hex / decimal) per project

Don’t

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

Key Takeaways

1

Four ways to render ‡ in HTML

&Dagger; &#x2021; &#8225;
2

For CSS stylesheets, use the escape in the content property

\2021
3

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

4

Prefer &Dagger; for readability in footnote-heavy content

5

Use first, then ‡ (&Dagger;) for the second footnote

❓ Frequently Asked Questions

Use &Dagger; (named), &#x2021; (hex), &#8225; (decimal), or \2021 in CSS content. All produce ‡.
U+2021 (DOUBLE DAGGER). General Punctuation block. Hex 2021, decimal 8225. Used for the second footnote after the single dagger (†).
For the second footnote or reference mark after †, in citations, academic and scholarly writing, legal texts, and any content that needs the ‡ symbol. Death dates in obituaries typically use the single dagger (), not the double.
HTML entities (&Dagger;, &#8225;, or &#x2021;) go in markup. The CSS escape \2021 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers.
Dagger (U+2020, &dagger;) is the first footnote mark (†). Double Dagger (U+2021, &Dagger;) is the second (‡). In HTML entity names, lowercase dagger = single, uppercase Dagger = double.

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