HTML Entity for Black Left Bullet (⁌)

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

What You'll Learn

How to display Black Left Bullet (⁌) in HTML and CSS. This character is U+204C in the General Punctuation block (U+2000–U+206F). Its Unicode name is BLACK LEFTWARDS BULLET—a left-pointing bullet or list marker, often used as an alternative to standard bullets or for directional UI accents.

There is no named HTML entity for U+204C. Use ⁌ or ⁌ in markup, or \204C in stylesheet content. The symbol suits bullet lists, navigation markers, UI design, and document formatting. Pair decorative bullets with visible text or aria-label when they convey meaning.

⚡ Quick Reference — Black Left Bullet

Unicode U+204C

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+204C
Hex code       ⁌
HTML code      ⁌
Named entity   —
CSS code       \204C
1

Complete HTML Example

This example shows U+204C using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\204C";
  }
 </style>
</head>
<body>
<p>Black Left Bullet using Hexa Decimal: &#x204C;</p>
<p>Black Left Bullet using HTML Code: &#8268;</p>
<p id="point">Black Left Bullet using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+204C is widely supported in modern browsers; bullet glyph shape varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside the paired rightwards bullet (font-dependent):

Large glyph
List markers ⁌ First item
⁌ Second item
⁌ Third item
Bullet pair (U+204C & U+204D) ⁌ ⁍
Caption U+204C is BLACK LEFTWARDS BULLET; U+204D is BLACK RIGHTWARDS BULLET in General Punctuation.
Monospace refs &#x204C; &#8268; \204C

🧠 How It Works

1

Hexadecimal Code

&#x204C; references code point U+204C using hex digits 204C after the #x prefix.

HTML markup
2

Decimal HTML Code

&#8268; is the decimal equivalent (8268) for the same Black Left Bullet character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+204C.

Use Cases

The Black Left Bullet (⁌) is commonly used for:

📋 Bullet lists

Alternative list markers for unordered lists, outlines, and nested content.

💻 UI design

Buttons, navigation indicators, menus, and graphical UI elements.

⬅ Directional indicators

Left-pointing markers, back buttons, and navigation hints.

📄 Document formatting

Section markers, pull quotes, and typographic accents in articles.

🎨 Graphical elements

Web design accents, borders, and decorative bullet points.

📱 Mobile & app UI

List items, menu indicators, and compact touch interfaces.

♿ Accessibility

Pair ⁌ with text or ARIA when used for decorative or directional markers.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+204C
  • Pair ⁌ with ⁍ (black rightwards bullet) for bidirectional list styling
  • Scale with font-size so the bullet fits list and UI contexts
  • Choose fonts that support the General Punctuation block (U+2000–U+206F)
  • Use \204C only inside CSS content, not inside HTML text nodes
  • Add aria-hidden="true" when purely decorative, or text for meaningful markers

Don’t

  • Confuse U+204C with U+204D (rightwards bullet) or standard bullets (• •)
  • Rely on ⁌ alone to communicate meaning in critical UI
  • Assume every font renders punctuation bullets crisply at small sizes
  • Use decorative bullets as the only navigation or state cue
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x204C; &#8268;
2

CSS content escape

\204C
3

U+204C is a leftwards bullet; pairs with Black Rightwards Bullet U+204D

4

General Punctuation block U+2000–U+206F; no named HTML entity

5

Pair ornamental glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x204C; (hex), &#8268; (decimal), or \204C in CSS content. There is no named entity; all valid methods render ⁌.
U+204C (hex 204C, decimal 8268). General Punctuation (U+2000–U+206F). Unicode name BLACK LEFTWARDS BULLET.
For bullet lists, UI design, directional indicators, navigation markers, and left-pointing list markers.
Numeric references belong in HTML. The \204C escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x204C;, &#8268;, or \204C in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

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