HTML Entity for Tironian Sign Et (⁊)

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

What You'll Learn

How to display the Tironian Sign Et symbol (⁊) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+204A (TIRONIAN SIGN ET) in the General Punctuation block (U+2000–U+206F)—a historical shorthand for “and,” used like an ampersand in medieval Irish and Old English texts.

Render it with ⁊, ⁊, or CSS escape \204A. There is no named HTML entity. Do not confuse ⁊ with & (ampersand, U+0026) or ⁄ (FRACTION SLASH).

⚡ Quick Reference — Tironian Sign Et

Unicode U+204A

General Punctuation

Hex Code ⁊

Hexadecimal reference

HTML Code ⁊

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+204A
Hex code       ⁊
HTML code      ⁊
Named entity   (none)
CSS code       \204A
Block          General Punctuation (U+2000–U+206F)
Official name  TIRONIAN SIGN ET
Related        U+0026; = Ampersand (&), U+2044; = Fraction Slash (⁄)
1

Complete HTML Example

This example demonstrates the Tironian Sign Et symbol (⁊) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\204A";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x204A;</p>
<p>Using HTML Code: &#8266;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Tironian Sign Et renders in modern browsers when fonts include General Punctuation glyphs:

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

👀 Live Preview

See the Tironian Sign Et symbol (⁊) in historical context:

Medieval text King ⁊ Queen
Large glyph
Compare Tironian: ⁊  |  Ampersand: &
Numeric refs &#x204A; &#8266; \204A

🧠 How It Works

1

Hexadecimal Code

&#x204A; uses the Unicode hexadecimal value 204A to display the Tironian Sign Et symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\204A is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+204A in General Punctuation. No named entity.

Use Cases

The Tironian Sign Et symbol (⁊) commonly appears in:

📜 Historical Docs

Medieval manuscript transcriptions and paleography.

💬 Linguistics

Historical linguistics and Tironian notation research.

🏛️ Medieval Texts

Digital editions of Old English and Irish texts.

📄 Academic Writing

Scholarly papers on historical shorthand systems.

🎓 Education

History tutorials on medieval writing systems.

🌐 Digital Humanities

Cultural heritage and preservation projects.

🖌️ Typography

Font design and historical character set studies.

💡 Best Practices

Do

  • Use &#x204A; or &#8266; for authentic historical transcription
  • Add context or title attributes explaining the symbol
  • Choose fonts with General Punctuation coverage
  • Test rendering across browsers and font stacks
  • Pair with explanatory text for general audiences

Don’t

  • Use ⁊ as a generic ampersand in modern UI (& is standard)
  • Confuse ⁊ with & or ⁄ (fraction slash)
  • Put CSS escape \204A directly in HTML text nodes
  • Expect a named HTML entity for U+204A
  • Use HTML entities in JS (use \u204A instead)

Key Takeaways

1

Two HTML references both render ⁊

&#x204A; &#8266;
2

For CSS stylesheets, use the escape in the content property

\204A
3

Unicode U+204A — TIRONIAN SIGN ET

4

Historical “and” shorthand—not the modern ampersand

5

No named entity—use numeric references or CSS escape

❓ Frequently Asked Questions

Use &#x204A; (hex), &#8266; (decimal), or \204A in CSS content. There is no named HTML entity. All three produce ⁊.
U+204A (TIRONIAN SIGN ET). General Punctuation block (U+2000–U+206F). Hex 204A, decimal 8266. Historical shorthand for “and.”
In historical documents, medieval texts, linguistic content, paleography projects, academic writing, and digital humanities work requiring authentic historical character representation.
HTML numeric references (&#8266; or &#x204A;) go directly in markup. The CSS escape \204A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Historical characters like ⁊ in General Punctuation use numeric hex or decimal references—standard practice for specialized punctuation.

Explore More HTML Entities!

Discover 1500+ HTML character references — historical symbols, punctuation, 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