HTML Entity for Aktieselskab (⅍)

What You'll Learn
How to display the Aktieselskab symbol (⅍) in HTML using numeric character references. Unicode assigns this code point the official character name Aktieselskab (U+214D)—a letterlike glyph used for the Danish aktieselskab legal form, parallel to writing A/S in plain Latin letters.
The character lives in the Letterlike Symbols block (U+2100–U+214F). There is no named HTML entity for ⅍, so you use ⅍ or ⅍ in markup, or \214D in CSS content on pseudo-elements.
⚡ Quick Reference — Aktieselskab Entity
U+214DLetterlike Symbols block
⅍Hexadecimal reference
⅍Decimal reference
\214DUse in CSS content
Name Value
──────────── ──────────
Unicode U+214D
Hex code ⅍
HTML code ⅍
Named entity (none)
CSS code \214DComplete HTML Example
This example shows the Aktieselskab symbol (⅍) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\214D";
}
</style>
</head>
<body>
<p>Aktieselskab using Hexa Decimal: ⅍</p>
<p>Aktieselskab using HTML Code: ⅍</p>
<p id="point">Aktieselskab using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references for U+214D are supported in all modern browsers. Final appearance depends on font coverage for the Letterlike Symbols block:
👀 Live Preview
See the Aktieselskab symbol rendered in typical contexts:
🧠 How It Works
Hexadecimal Code
⅍ references Unicode 214D in hexadecimal. The x prefix marks a hex numeric character reference.
Decimal HTML Code
⅍ is the decimal code point 8525 for the same character—often used when authors think in decimal Unicode values.
CSS Entity (Escape)
\214D is the CSS escape (four hex digits) used in content on ::before / ::after to emit ⅍ without placing the raw character in HTML.
Same visual result
All methods render ⅍. Unicode is U+214D (Letterlike Symbols, U+2100–U+214F). Official name: Aktieselskab. There is no standard named HTML entity; stick to numeric references or CSS escapes.
Use Cases
The Aktieselskab symbol (⅍) fits these kinds of content:
Corporate footers, about pages, and investor relations where the legal form must read correctly.
Articles of association, annual reports, and public registry excerpts that mirror printed typography.
Vendor or partner lists that include Scandinavian entities alongside other company suffixes.
Search results and tables where a single glyph saves space next to the company name.
Typography references documenting Letterlike Symbols and Nordic business abbreviations.
Formal signatures when HTML email must match branded PDF letterhead.
Regional components that expose the correct legal-form glyph for Danish locales.
💡 Best Practices
Do
- Use UTF-8 and one numeric style (hex or decimal) consistently
- Offer “A/S” or “Aktieselskab” nearby (or
abbrwith a title) for readers unfamiliar with ⅍ - Prefer
⅍or⅍when generating HTML from code - Test body and heading fonts for Letterlike Symbols (U+2100–U+214F) coverage
- Use
\214Donly in CSScontent, not inside HTML text nodes
Don’t
- Assume every custom webfont includes U+214D
- Use ⅍ without context in locales where A/S is never used
- Mix hex and decimal references at random in one template
- Paste CSS escapes into HTML markup (they belong in stylesheets)
- Confuse ⅍ with unrelated mathematical double-struck letters in other blocks
Key Takeaways
Two HTML numeric references render ⅍
⅍ ⅍In CSS, use the escape in content on pseudo-elements
\214DUnicode U+214D (Aktieselskab) in Letterlike Symbols
There is no named HTML entity for this character—use numeric references
Pair ⅍ with plain-language A/S where clarity for assistive tech and global users matters
❓ Frequently Asked Questions
⅍ (hex), ⅍ (decimal), or \214D in CSS content. All produce ⅍. There is no standard named entity.U+214D (hex 214D, decimal 8525). Unicode’s official name is Aktieselskab; it sits in the Letterlike Symbols block (U+2100–U+214F) and corresponds to the Danish limited company abbreviation A/S.⅍ or ⅍) go in markup. The CSS escape \214D belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
