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.
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. ⁌ / ⁌ belong in HTML.
Semicolon
End references
Always finish with ; — write ⁌, not ⁌.
Compatibility
Browser Support
Black left bullet (U+204C) and its entity forms (⁌, ⁌, 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 ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+204C / entitiesFull support
Bottom line: Prefer a typed ⁌ or ⁌ for markers. Use decimal when generating markup, and \\204C only inside CSS content.
Remember
Key Takeaways
Unicode: black left bullet is U+204C (decimal 8268).
HTML: use ⁌ or ⁌ (no named entity).
CSS: use \204C inside content for generated markers.
Watch out: ⁌ ≠ ⁍ (left ≠ right bullet).
One line:U+204C → ⁌ / ⁌ / CSS \204C.
Frequently Asked Questions
Use ⁌ (hex), ⁌ (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 ⁌, ⁌, or a typed ⁌ in UTF-8.
⁌ (U+204C) points left. ⁍ (U+204D) is black rightwards bullet. They are different code points.
HTML entities (⁌ or ⁌) 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 ⁍).