HTML Entity for Close Up (⁐)

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

What You'll Learn

How to display the Close Up (⁐) symbol in HTML and CSS. This character is U+2050 (CLOSE UP) in the General Punctuation block (U+2000–U+206F). It is used in typography, editorial work, and proofreading to indicate that text should be closed up or continued without a break.

There is no named HTML entity for U+2050. Use ⁐ or ⁐ in markup, or \2050 in stylesheet content. Do not confuse ⁐ with Character Tie U+2040 (⁀), Asterism U+2042 (⁂), or the multiplication sign U+00D7 (×).

⚡ Quick Reference — Close Up

Unicode U+2050

General Punctuation (U+2000–U+206F)

Hex Code ⁐

Hexadecimal reference

HTML Code ⁐

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2050";
  }
 </style>
</head>
<body>
<p>Close Up using Hexa Decimal: &#x2050;</p>
<p>Close Up using HTML Code: &#8272;</p>
<p id="point">Close Up using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2050 is supported in modern browsers; glyph appearance may vary by font:

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

👀 Live Preview

See the Close Up symbol in editorial and typographic contexts:

Proofreading Close up space ⁐ between words
Editorial note Continuation mark: ⁐
Large glyph
vs related punctuation Close Up: ⁐ (U+2050)   Character Tie: ⁀ (U+2040)   Asterism: ⁂ (U+2042)
Monospace refs &#x2050; &#8272; \2050

🧠 How It Works

1

Hexadecimal Code

&#x2050; references code point U+2050 using hex digits 2050.

HTML markup
2

Decimal HTML Code

&#8272; is the decimal equivalent (8272) for the same character.

HTML markup
3

CSS Entity

\2050 is the CSS escape for U+2050, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Close Up glyph: . Unicode U+2050 sits in General Punctuation (U+2000–U+206F). No named HTML entity exists.

Use Cases

The Close Up symbol (⁐) commonly appears in:

📝 Typography

Editorial close-up marks in typeset and proofread content.

📚 Dictionaries

Reference works and glossaries following traditional typographic conventions.

✏️ Proofreading

Standard “close up” notation to remove unwanted space in editing workflows.

🔍 Design labels

UI or layout elements suggesting detail, zoom, or close-up views.

📄 Publishing

Web-based publishing tools and layout software supporting General Punctuation.

🔤 Symbol references

Unicode tables and typography character glossaries.

♿ Accessibility

Provide alt text (e.g. “close up”) when the symbol carries editorial meaning.

💡 Best Practices

Do

  • Use &#x2050; or &#8272; consistently in HTML
  • Pair the symbol with a legend in proofreading or editorial content
  • Choose fonts that support General Punctuation (Segoe UI, Noto Sans)
  • Use \2050 only inside CSS content, not in HTML text nodes
  • Explain editorial marks in surrounding text for non-specialist readers

Don’t

  • Confuse U+2050 (⁐) with Character Tie U+2040 (⁀) or multiplication ×
  • Use U+02050 notation—the correct code point is U+2050
  • Assume a named entity exists—U+2050 has none
  • Use the glyph without context in accessibility-sensitive editorial UI
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2050; &#8272;
2

For CSS stylesheets, use the escape in the content property

\2050
3

U+2050 CLOSE UP

4

General Punctuation typographic and proofreading mark

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2050; (hex), &#8272; (decimal), or \2050 in CSS content. There is no named HTML entity for U+2050.
U+2050 (CLOSE UP). General Punctuation (U+2000–U+206F). Hex 2050, decimal 8272.
In typography and editorial content, dictionaries, proofreading marks, publishing tools, and any document requiring this General Punctuation character.
Numeric references (&#8272; or &#x2050;) go directly in HTML markup. The CSS escape \2050 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover commonly used characters; typographic marks like U+2050 use numeric codes because they sit in the General Punctuation Unicode block. This is standard for many punctuation characters in HTML.

Explore More HTML Entities!

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