HTML Entity for Medium Vertical Bar (❙)

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

What You'll Learn

How to display the medium vertical bar (❙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2759 (MEDIUM VERTICAL BAR) in the Dingbats block (U+2700–U+27BF)—a medium-weight vertical separator for typography, dividers, and layout accents.

Render it with ❙, ❙, or CSS escape \2759. There is no named HTML entity. Do not confuse ❙ with ASCII pipe | (U+007C) or light vertical bar (❘, U+2758)—each is a distinct glyph.

⚡ Quick Reference — Medium Vertical Bar

Unicode U+2759

Dingbats block

Hex Code ❙

Hexadecimal reference

HTML Code ❙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2759
Hex code       ❙
HTML code      ❙
Named entity   (none)
CSS code       \2759
Meaning        Medium vertical bar separator
Related        U+2758 = light vertical bar (❘)
               U+007C = ASCII pipe (|)
1

Complete HTML Example

This example demonstrates the medium vertical bar (❙) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2759";
  }
 </style>
</head>
<body>
<p>Vertical Bar using Hexadecimal: &#x2759;</p>
<p>Vertical Bar using HTML Code: &#10073;</p>
<p id="point">Vertical Bar using CSS Entity: </p>
<p>Separator: Home &#x2759; Docs &#x2759; API</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The medium vertical bar is widely supported in modern browsers:

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

👀 Live Preview

See the medium vertical bar (❙) in separator and typography contexts:

Breadcrumb Home ❙ Products ❙ Details
Large glyph
vs ASCII pipe ❙ medium   | ASCII pipe
Weight compare ❘ light   ❙ medium
Numeric refs &#x2759; &#10073;

🧠 How It Works

1

Hexadecimal Code

&#x2759; uses the Unicode hexadecimal value 2759 to display the medium vertical bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2759 sits in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.

Use Cases

The medium vertical bar (❙) is commonly used in:

🔗 Separators

Inline dividers between breadcrumb segments, tags, or metadata.

📝 Typography

Visual punctuation and layout accents in headings and labels.

📈 Tables & data

Column-style separators in plain-text or monospace layouts.

🎨 UI design

Toolbar dividers, menu separators, and dashboard accents.

📰 Publishing

Editorial layouts and magazine-style inline separators.

📄 Reference guides

HTML entity tutorials and Dingbats Unicode documentation.

💡 Best Practices

Do

  • Use &#x2759; or &#10073; consistently per project
  • Distinguish ❙ from ASCII | (U+007C) and ❘ (light bar)
  • Prefer semantic markup (e.g. <nav> with accessible separators) where possible
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Test glyph rendering across browsers and font stacks

Don’t

  • Call ❙ a “pipe” — that usually means U+007C (|)
  • Use decorative bars as the only separator for screen-reader-critical navigation
  • Put CSS escape \2759 in HTML text nodes
  • Use HTML entities in JS (use \u2759)
  • Use padded Unicode notation like U+02759—the correct value is U+2759

Key Takeaways

1

Two HTML references both render ❙

&#x2759; &#10073;
2

For CSS stylesheets, use the escape in the content property

\2759
3

Unicode U+2759 — MEDIUM VERTICAL BAR in Dingbats

4

No named HTML entity—use numeric codes or UTF-8 literal ❙

5

Not the same as ASCII pipe | (U+007C)

❓ Frequently Asked Questions

Use &#x2759; (hex), &#10073; (decimal), or \2759 in CSS content. All produce ❙. There is no named HTML entity for U+2759.
U+2759 (MEDIUM VERTICAL BAR). Dingbats block (U+2700–U+27BF). Hex 2759, decimal 10073. Distinct from ASCII | (U+007C).
For visual separators, inline dividers, table-style formatting, breadcrumb accents, and typography where a medium-weight vertical bar ornament is needed.
HTML references (&#10073; or &#x2759;) go directly in markup. The CSS escape \2759 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ❙ is U+2759 (MEDIUM VERTICAL BAR) in Dingbats. ASCII pipe | is U+007C (VERTICAL LINE). They are different glyphs with different code points.

Explore More HTML Entities!

Discover 1500+ HTML character references — dingbats, separators, and decorative symbols.

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