HTML Entity for Tironian Sign Et (⁊)

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
U+204AGeneral Punctuation
⁊Hexadecimal reference
⁊Decimal reference
—Use numeric codes only
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 (⁄)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):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\204A";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⁊</p>
<p>Using HTML Code: ⁊</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Tironian Sign Et renders in modern browsers when fonts include General Punctuation glyphs:
👀 Live Preview
See the Tironian Sign Et symbol (⁊) in historical context:
🧠 How It Works
Hexadecimal Code
⁊ uses the Unicode hexadecimal value 204A to display the Tironian Sign Et symbol.
Decimal HTML Code
⁊ uses the decimal Unicode value 8266 to display the same character.
CSS Entity
\204A is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
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:
Medieval manuscript transcriptions and paleography.
Historical linguistics and Tironian notation research.
Digital editions of Old English and Irish texts.
Scholarly papers on historical shorthand systems.
History tutorials on medieval writing systems.
Cultural heritage and preservation projects.
Font design and historical character set studies.
💡 Best Practices
Do
- Use
⁊or⁊for authentic historical transcription - Add context or
titleattributes 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
\204Adirectly in HTML text nodes - Expect a named HTML entity for U+204A
- Use HTML entities in JS (use
\u204Ainstead)
Key Takeaways
Two HTML references both render ⁊
⁊ ⁊For CSS stylesheets, use the escape in the content property
\204AUnicode U+204A — TIRONIAN SIGN ET
Historical “and” shorthand—not the modern ampersand
No named entity—use numeric references or CSS escape
❓ Frequently Asked Questions
⁊ (hex), ⁊ (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.”⁊ or ⁊) 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.Explore More HTML Entities!
Discover 1500+ HTML character references — historical symbols, punctuation, and more.
8 people found this page helpful
