HTML Entity for Black Left Bullet (⁌)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+204C

What Is Black Left Bullet?

Black left bullet (⁌) is Unicode U+204C in the General Punctuation block. It is a filled bullet that points left — useful for custom lists and directional markers. HTML has no standard named entity — use numeric or CSS forms (or type the character in UTF-8).

Remember
Character     ⁌
Unicode       U+204C
Hex entity    ⁌
Decimal       ⁌
Named entity  (none)
CSS escape    \204C
Not the same  ⁍ U+204D (black right bullet)

All of these produce the same glyph: ⁌. Prefer typing ⁌ in UTF-8 when you can; use ⁌ / ⁌ or CSS for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⁌HTML text (UTF-8)
Named entityNone—
Hex entity⁌HTML markup
Decimal entity⁌HTML markup
CSS escape\204CStylesheet content

When to Use Which

SituationUse
Left-pointing filled bullet⁌ or type ⁌
Right-pointing filled bullet⁍ (U+204D)
Ordinary HTML listUse <ul> / <li> (semantics first)
Icon via CSScontent: "\204C" on ::before

Live Preview

Black left bullet in study contexts.

Inline marker ⁌ Tip item
Large glyph ⁌
vs. right bullet ⁌ left  ·  ⁍ right
Accessible label bullet Note
With entities Hex: ⁌ | Decimal: ⁌

Complete HTML Example

One page that shows ⁌ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⁌ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Black Left Bullet (⁌) in HTML</title>
  <style>
    #point::after {
      content: "\204C";
    }
  </style>
</head>
<body>
  <p>Black left bullet using Hex Code: &#x204C;</p>
  <p>Black left bullet using HTML Code: &#8268;</p>
  <p id="point">Black left bullet using CSS Entity: </p>
  <p>Typed directly: ⁌</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+204C → &#x204C; in HTML. The browser turns it into ⁌.

2. Decimal: same code point as 8268 → &#8268;. Same result as hex.

3. CSS: use \204C in content (not an HTML entity). #point::after appends that ⁌ after the paragraph text.

4. Typed ⁌: fine in UTF-8 source. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with black left bullet (⁌).

Named

No &name; form

U+204C has no standard named entity — use &#x204C; or &#8268;.

⁍

Not the right bullet

For a right-pointing bullet use ⁍ (U+204D).

Lists

Prefer real list markup

For ordinary lists use <ul>/<li>. Use ⁌ when you need this specific glyph as decoration.

a11y

Label or hide

Screen readers may skip rare bullets. Hide pure decoration with aria-hidden, or add a short label.

CSS vs HTML

Do not mix escapes

\204C belongs in CSS. &#x204C; / &#8268; belong in HTML.

Semicolon

End references

Always finish with ; — write &#x204C;, not &#x204C.

Browser Support

Black left bullet (U+204C) and its entity forms (&#x204C;, &#8268;, CSS \\204C) are supported in all mainstream browsers. Glyph quality depends on font support for General Punctuation.

✓ Universal support

Black Left Bullet (⁌)

Type ⁌, or encode with hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+204C / entities Full support

Bottom line: Prefer a typed ⁌ or &#x204C; for markers. Use decimal when generating markup, and \\204C only inside CSS content.

Key Takeaways

  • Unicode: black left bullet is U+204C (decimal 8268).
  • HTML: use &#x204C; or &#8268; (no named entity).
  • CSS: use \204C inside content for generated markers.
  • Watch out: ⁌ ≠ ⁍ (left ≠ right bullet).

One line: U+204C → &#x204C; / &#8268; / CSS \204C.

Frequently Asked Questions

Use &#x204C; (hex), &#8268; (decimal), or the CSS escape \204C in the content property. All render ⁌. You can also paste ⁌ directly if your file is UTF-8. There is no standard named entity.
U+204C (hex 204C, decimal 8268). Unicode names it BLACK LEFTWARDS BULLET. It belongs to the General Punctuation block.
No. HTML5 / WHATWG does not define a named character reference for U+204C. Prefer &#x204C;, &#8268;, or a typed ⁌ in UTF-8.
⁌ (U+204C) points left. ⁍ (U+204D) is black rightwards bullet. They are different code points.
HTML entities (&#8268; or &#x204C;) go in markup. The CSS escape \204C is used in stylesheets (usually in the content property of ::before/::after). Both render ⁌.
Use ⁌ for custom list markers, left-pointing UI bullets, and directional indicators. Prefer standard list markup for ordinary lists when semantics matter.

Did you know?

Black left bullet is Unicode U+204C (decimal 8268) in the General Punctuation block — official name BLACK LEFTWARDS BULLET. There is no standard named HTML entity. It is not black right bullet (U+204D ⁍).

Next: Black Left Pointing Index

Learn the HTML entity for the black left pointing index (☚).

Next tutorial →

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