Black right bullet (⁍) is Unicode U+204D in the General Punctuation block. It is a filled bullet that points right — 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+204D
Hex entity ⁍
Decimal ⁍
Named entity (none)
CSS escape \204D
Not the same ⁌ U+204C (black left 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
\204D belongs in CSS. ⁍ / ⁍ belong in HTML.
Semicolon
End references
Always finish with ; — write ⁍, not ⁍.
Compatibility
Browser Support
Black right bullet (U+204D) and its entity forms (⁍, ⁍, CSS \\204D) are supported in all mainstream browsers. Glyph quality depends on font support for General Punctuation.
✓ Universal support
Black Right 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+204D / entitiesFull support
Bottom line: Prefer a typed ⁍ or ⁍ for markers. Use decimal when generating markup, and \\204D only inside CSS content.
Remember
Key Takeaways
Unicode: black right bullet is U+204D (decimal 8269).
HTML: use ⁍ or ⁍ (no named entity).
CSS: use \204D inside content for generated markers.
Watch out: ⁍ ≠ ⁌ (right ≠ left bullet).
One line:U+204D → ⁍ / ⁍ / CSS \204D.
Frequently Asked Questions
Use ⁍ (hex), ⁍ (decimal), or the CSS escape \204D in the content property. All render ⁍. You can also paste ⁍ directly if your file is UTF-8. There is no standard named entity.
U+204D (hex 204D, decimal 8269). Unicode names it BLACK RIGHTWARDS BULLET. It belongs to the General Punctuation block.
No. HTML5 / WHATWG does not define a named character reference for U+204D. Prefer ⁍, ⁍, or a typed ⁍ in UTF-8.
⁍ (U+204D) points right. ⁌ (U+204C) is black leftwards bullet. They are different code points.
HTML entities (⁍ or ⁍) go in markup. The CSS escape \204D is used in stylesheets (usually in the content property of ::before/::after). Both render ⁍.
Use ⁍ for custom list markers, right-pointing UI bullets, and directional indicators. Prefer standard list markup for ordinary lists when semantics matter.
🤔
Did you know?
Black right bullet is Unicode U+204D (decimal 8269) in the General Punctuation block — official name BLACK RIGHTWARDS BULLET. There is no standard named HTML entity. It is not black left bullet (U+204C ⁌).