HTML Entity for Centre Line Symbol (℄)

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

What You'll Learn

How to display the Centre Line Symbol (℄) in HTML using numeric references and CSS escapes. This character is U+2104 (CENTRE LINE SYMBOL) in the Letterlike Symbols block (U+2100–U+214F). It marks imaginary centre lines through the axis of symmetric features in technical and engineering drawings.

There is no named HTML entity for U+2104. Use ℄, ℄, or \2104 in CSS content. Do not confuse ℄ with the Cent Sign U+00A2 (¢, currency) or Care Of U+2105 (℅).

⚡ Quick Reference — Centre Line Symbol

Unicode U+2104

Letterlike Symbols block

Hex Code ℄

Hexadecimal reference

HTML Code ℄

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2104
Hex code       ℄
HTML code      ℄
Named entity   —
CSS code       \2104
1

Complete HTML Example

This example shows U+2104 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2104";
  }
 </style>
</head>
<body>
<p class="cl-label">Centre Line Symbol using Hexa Decimal: &#x2104;</p>
<p class="cl-label">Centre Line Symbol using HTML Code: &#8452;</p>
<p class="cl-label" id="point">Centre Line Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Centre Line Symbol entity is supported in all modern browsers:

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

👀 Live Preview

See the Centre Line Symbol in drafting and notation contexts:

Drawing label ℄ A-A
Hole axis note ℄ Ø12 H7 (centre line through hole)
Large glyph
vs Cent Sign Centre line: ℄ (U+2104)   Cent: ¢ (U+00A2)
Monospace refs &#x2104; &#8452; \2104

🧠 How It Works

1

Hexadecimal Code

&#x2104; uses the Unicode hexadecimal value 2104 to display the Centre Line Symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2104 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Centre Line glyph: . Unicode U+2104 sits in the Letterlike Symbols block (U+2100–U+214F).

Use Cases

The Centre Line Symbol (℄) commonly appears in:

📐 Technical drawings

Engineering drawings marking centre lines of holes, cylinders, and symmetric features.

🏗️ CAD & blueprints

CAD documentation, architectural blueprints, and manufacturing drawings.

⚙️ Manufacturing specs

Dimensioning documents, machining instructions, and quality control references.

📚 Education

Drafting courses, engineering drawing tutorials, and technical notation guides.

💻 Design tools

Web-based diagram editors and technical illustration apps showing centre lines.

📄 Documentation

Technical wikis, product manuals, and engineering references with drawing notation.

♿ Accessibility

Provide text alternatives (“centre line”) or ARIA labels in diagrams for screen readers.

💡 Best Practices

Do

  • Use &#x2104; or &#8452; consistently in technical HTML
  • Pair the symbol with descriptive labels in drawing legends
  • Choose fonts that support Letterlike Symbols (U+2100–U+214F)
  • Use CSS \2104 for icon-style labels in pseudo-elements
  • Add accessible descriptions when the symbol appears in diagrams

Don’t

  • Confuse ℄ (centre line, U+2104) with ¢ (cent, U+00A2)
  • Put CSS escape \2104 inside HTML text nodes
  • Assume every font renders U+2104 identically on all devices
  • Use the symbol without context in instructional material
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references both render ℄

&#x2104; &#8452;
2

For CSS stylesheets, use the escape in the content property

\2104
3

U+2104 CENTRE LINE SYMBOL — drafting notation

4

Letterlike Symbols block — not a currency symbol

5

No named HTML entity — use numeric references only

❓ Frequently Asked Questions

Use &#x2104; (hex), &#8452; (decimal), or \2104 in CSS content. All produce ℄. There is no named HTML entity.
U+2104 (CENTRE LINE SYMBOL). Letterlike Symbols block (U+2100–U+214F). Hex 2104, decimal 8452. Denotes centre lines in technical and engineering drawings.
For technical drawings, engineering diagrams, CAD documentation, blueprints, manufacturing specs, and web-based drafting tutorials.
HTML numeric references (&#8452; or &#x2104;) go directly in markup. The CSS escape \2104 is used in stylesheets, typically in the content property of pseudo-elements.
No. Use &#x2104;, &#8452;, or \2104 in CSS. Do not confuse with the Cent Sign &cent; (U+00A2).

Explore More HTML Entities!

Discover 1500+ HTML character references — technical symbols, letterlike glyphs, math operators, 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