HTML Entity for Triangular Bullet (‣)

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

What You'll Learn

How to display the Triangular Bullet (‣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2023 (TRIANGULAR BULLET) in the General Punctuation block (U+2000–U+206F)—a typographic list marker shaped like a small triangle, used for bullet points and navigation lists.

Render it with ‣, ‣, or CSS escape \2023. There is no named HTML entity. Do not confuse ‣ with U+2022 (•, bullet / •) or U+2043 (⁃, hyphen bullet / ⁃).

⚡ Quick Reference — Triangular Bullet

Unicode U+2023

General Punctuation

Hex Code ‣

Hexadecimal reference

HTML Code ‣

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2023
Hex code       ‣
HTML code      ‣
Named entity   (none)
CSS code       \2023
Block          General Punctuation (U+2000–U+206F)
Official name  TRIANGULAR BULLET
Related        U+2022 = bullet (•), U+2043 = hyphen bullet (⁃)
1

Complete HTML Example

This example demonstrates the Triangular Bullet (‣) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2023";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2023;</p>
<p>Using HTML Code: &#8227;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Triangular Bullet renders in modern browsers when fonts include General Punctuation glyphs:

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

👀 Live Preview

See the Triangular Bullet (‣) in list and typography context:

List item ‣ First feature   ‣ Second feature
Large glyph
Compare bullets • round  |  ‣ triangular  |  ⁃ hyphen
Navigation ‣ About   ‣ Services   ‣ Contact
Numeric refs &#x2023; &#8227; \2023

🧠 How It Works

1

Hexadecimal Code

&#x2023; uses the Unicode hexadecimal value 2023 to display the Triangular Bullet.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2023 is used in CSS stylesheets in the content property of pseudo-elements like ::before, ::after, or ::marker.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2023 in General Punctuation. No named entity. Previous: Triangle Headed Right Arrow. Next: Tricolon.

Use Cases

The Triangular Bullet (‣) commonly appears in:

📋 Lists

Bulleted and unordered lists with a triangle marker.

📝 Typography

Editorial content and styled text formatting.

🗺 Navigation Menus

Sidebar lists and menu items with decorative markers.

🎨 Content Design

Modern layouts needing alternative bullet styles.

📄 Outlines

Notes, specs, and step lists with consistent markers.

💻 CSS Markers

Custom list bullets via ::marker or ::before.

📚 Documentation

Feature lists and tutorial bullet styling.

💡 Best Practices

Do

  • Use &#x2023; or &#8227; for inline triangular bullets
  • Prefer semantic <ul> / <li> with CSS ::marker for lists
  • Style with CSS content: "\2023" on ::before for reusable markers
  • Keep bullet style consistent across the page or site
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ‣ (triangular) with • (round bullet) or ⁃ (hyphen bullet)
  • Replace proper list markup with bare symbols and no list semantics
  • Put CSS escape \2023 directly in HTML text nodes
  • Expect a named HTML entity for U+2023
  • Use HTML entities in JS (use \u2023 instead)

Key Takeaways

1

Two HTML references both render ‣

&#x2023; &#8227;
2

For CSS, use \2023 in the content property

3

Unicode U+2023 — Triangular Bullet

4

No named entity—use numeric references or CSS escape

5

General Punctuation block (U+2000–U+206F) for typographic markers

❓ Frequently Asked Questions

Use &#x2023; (hex), &#8227; (decimal), or \2023 in CSS content. There is no named HTML entity. All three produce ‣.
U+2023 (TRIANGULAR BULLET). General Punctuation block (U+2000–U+206F). Hex 2023, decimal 8227. A typographic list marker shaped like a small triangle.
For lists, bullet points, navigation menus, typography, text formatting, and any content requiring decorative or functional triangular list markers.
HTML numeric references (&#8227; or &#x2023;) go directly in markup. The CSS escape \2023 is used in stylesheets, typically in the content property of pseudo-elements or ::marker. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols like &bull; (U+2022). General Punctuation markers like ‣ use numeric hex or decimal references—standard practice for typographic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, bullets, symbols, 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