HTML Entity for Light Vertical Bar (❘)

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

What You'll Learn

How to display the Light Vertical Bar (❘) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2758 (LIGHT VERTICAL BAR) in the Dingbats block (U+2700–U+27BF).

Render it with ❘, ❘, or CSS escape \2758. There is no named HTML entity. Use this glyph as a light-weight separator or typographic divider that is distinct from the standard pipe character (|).

⚡ Quick Reference — Light Vertical Bar

Unicode U+2758

Dingbats

Hex Code ❘

Hexadecimal reference

HTML Code ❘

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2758
Hex code       ❘
HTML code      ❘
Named entity   (none)
CSS code       \2758
Meaning        Light vertical bar
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Light Vertical Bar (❘) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2758";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2758;</p>
<p>Symbol (decimal): &#10072;</p>
<p id="point">Symbol (CSS): </p>
<p>Separator example: One ❘ Two ❘ Three</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Light Vertical Bar (❘) is supported in modern browsers when the font includes Dingbats glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Light Vertical Bar (❘) alongside similar separator characters:

Large glyph
In text One ❘ Two ❘ Three
Compare pipe: |   light bar: ❘   double: ‖
Numeric refs &#x2758; &#10072; \2758

🧠 How It Works

1

Hexadecimal Code

&#x2758; uses the Unicode hexadecimal value 2758 to display the character.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2758 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 glyph: . Unicode U+2758 is in Dingbats. There is no named HTML entity.

Use Cases

The Light Vertical Bar (❘) is commonly used in:

🧭 Separators

Divide short bits of UI text (e.g. “Home ❘ Docs ❘ Blog”).

📋 Tables & lists

Use as a light-weight divider in plain-text style tables or lists.

🎨 Typography

Create a subtle visual break distinct from the ASCII pipe (|).

💻 UI design

Use in badges, metadata rows, or headers as a decorative separator.

📝 Documentation

Show examples of Unicode separators and dingbats in character references.

🌐 Content styling

Insert via CSS content for decorative separators without changing HTML.

💡 Best Practices

Do

  • Use numeric references (&#x2758; or &#10072;) in HTML for portability
  • Use \2758 in CSS content when inserting via pseudo-elements
  • Pick one separator style and use it consistently across the UI
  • Ensure your font supports Dingbats for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use ❘ when you actually need the ASCII pipe | (common in code snippets)
  • Put CSS escape \2758 in HTML text nodes
  • Rely on the glyph alone for accessibility—use spacing and semantics for separation
  • Assume every font renders dingbats identically—test across devices
  • Overuse separators; sometimes spacing or layout is clearer

Key Takeaways

1

Three references render ❘ (no named entity)

&#x2758; &#10072;
2

For CSS stylesheets, use the escape in the content property

\2758
3

Unicode U+2758 — LIGHT VERTICAL BAR

4

Use ❘ for typography; use | for code and plain ASCII

❓ Frequently Asked Questions

Use &#x2758; (hex), &#10072; (decimal), or \2758 in CSS content. All produce ❘. There is no named HTML entity.
U+2758 (LIGHT VERTICAL BAR) in Dingbats. Hex 2758, decimal 10072. No named HTML entity.
As a separator/divider in text and UI, for typographic design, and when you want a vertical bar distinct from the ASCII pipe (|).
HTML references (&#10072; or &#x2758;) go in markup. The CSS escape \2758 goes in stylesheets (e.g. content on pseudo-elements). Both render ❘.
Many dingbat characters are not part of the named HTML entity set. For U+2758, numeric references (hex/decimal) or CSS escapes are the standard approach.

Explore More HTML Entities!

Discover 1500+ HTML character references — separators, ornaments, 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