HTML Entity for Aktieselskab (⅍)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+214D

What Is the Aktieselskab Entity?

Aktieselskab (⅍) is the Letterlike Symbols character at Unicode U+214D. Unicode’s official name is Aktieselskab — the typographic abbreviation for the Danish limited company form, parallel to writing A/S in plain Latin letters. You can paste ⅍ in UTF-8 HTML, or write it with a numeric character reference when you need an explicit entity form.

Remember
Character     ⅍
Unicode       U+214D
Hex entity    ⅍
Decimal       ⅍
CSS escape    \214D
Named entity  (none)
Plain text    A/S (common alternative)

All entity forms produce the same glyph: ⅍. Prefer the character or a numeric entity when the letterlike form is required; use plain A/S when clarity or font coverage matters more.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⅍HTML text (UTF-8)
Hex entity⅍HTML markup
Decimal entity⅍HTML markup
CSS escape\214DStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Danish company typography with the letterlike glyph⅍ or paste ⅍
Maximum clarity / weak font coverageType A/S
Generated text via ::before / ::aftercontent: "\214D"
Looking for a named entityDoes not exist — use numeric form
AccessibilityPair ⅍ with company name text so meaning is clear

Live Preview

Aktieselskab rendered in common business contexts.

Inline text Nordic Trade ⅍ — registered company name line.
Large glyph ⅍
vs. plain A/S ⅍ (letterlike)  |  A/S (ASCII)
Monospace CVR: ACME ⅍
With entities Hex: ⅍ | Decimal: ⅍

Complete HTML Example

One page that shows Aktieselskab with the hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

All four ways to produce ⅍ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Aktieselskab (⅍) in HTML</title>
  <style>
    #point::after {
      content: "\214D";
    }
  </style>
</head>
<body>
  <p>Aktieselskab using Hex Code: &#x214D;</p>
  <p>Aktieselskab using HTML Code: &#8525;</p>
  <p id="point">Aktieselskab using CSS Entity: </p>
  <p>Typed directly: ⅍</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+214D → &#x214D; in HTML. The browser turns it into ⅍.

2. Decimal: same code point as 8525 → &#8525;. Same result as hex.

3. CSS: use \214D in content (not an HTML entity). #point::after appends that ⅍ after the paragraph text.

4. Typed ⅍: fine in UTF-8 source. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with the Aktieselskab entity.

Named?

No named entity

HTML5 does not define a named entity for U+214D. Use numeric forms.

A/S

Glyph vs letters

⅍ is one character. Plain A/S is three ASCII characters — often clearer and more portable.

CSS vs HTML

Do not mix escapes

\214D belongs in CSS. &#x214D; / &#8525; belong in HTML.

Fonts

Check Letterlike coverage

Some webfonts omit U+214D. Test your real body font or fall back to A/S.

Meaning

Add the company name

Write “Acme ⅍” (or “Acme A/S”) so readers understand the legal-form abbreviation.

Semicolon

End references

Always finish with ; — write &#8525;, not &#8525.

Browser Support

Aktieselskab (U+214D) and its numeric entity forms (&#x214D;, &#8525;, CSS \\214D) are supported in all mainstream browsers. Glyph appearance depends on font coverage for the Letterlike Symbols block.

✓ Universal support

Aktieselskab (&#x214D;)

Paste ⅍, or encode with hex, decimal, or CSS escape — same character everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+214D / entities Full support

Bottom line: Use a typed ⅍ in UTF-8 text when convenient. Prefer &#x214D; or &#8525; in HTML when encoding must be explicit, and \\214D only inside CSS content. Fall back to A/S when fonts lack coverage.

Key Takeaways

  • Unicode: Aktieselskab is U+214D (decimal 8525).
  • HTML: use &#x214D; or &#8525; when you need an entity.
  • CSS: use \214D inside content for generated text.
  • Meaning: ⅍ ≈ Danish A/S — plain letters are a safe fallback.

One line: U+214D → paste ⅍, or encode as &#x214D; / &#8525; / CSS \214D.

Frequently Asked Questions

Use &#x214D; (hex), &#8525; (decimal), or the CSS escape \214D in the content property. All render Aktieselskab (⅍). You can also paste ⅍ directly if your file is UTF-8.
U+214D (hex 214D, decimal 8525). Unicode names it Aktieselskab. It belongs to the Letterlike Symbols block and corresponds to the Danish A/S company form.
No. HTML5 does not define a named entity such as &aktieselskab;. Use numeric references like &#8525; or &#x214D; when you need an entity form.
Use ⅍ when you want the single letterlike glyph in Nordic business typography. For maximum clarity and font compatibility, plain “A/S” is often safer in running English or mixed-script pages.
HTML entities (&#8525; or &#x214D;) go in markup. The CSS escape \214D is used in stylesheets (usually in the content property of ::before/::after). Both render ⅍.
No. Some webfonts omit Letterlike Symbols. Test your body font; if missing, the browser falls back to another font that includes U+214D, or you can write A/S instead.

Did you know?

Aktieselskab is Unicode U+214D (decimal 8525) in the Letterlike Symbols block. It is the typographic form of the Danish company abbreviation A/S. HTML5 has no named entity — use &#x214D; or &#8525;.

Next: Alef Symbol

Learn the HTML entity for the Alef symbol (ℵ) — often used in mathematics, with a named entity too.

Alef Symbol tutorial →

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