HTML Entity for Black Right Bullet (⁍)

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

What Is Black Right Bullet?

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.

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\204DStylesheet content

When to Use Which

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

Live Preview

Black right bullet in study contexts.

Inline marker ⁍ Tip item
Large glyph ⁍
vs. left 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 Right Bullet (⁍) in HTML</title>
  <style>
    #point::after {
      content: "\204D";
    }
  </style>
</head>
<body>
  <p>Black right bullet using Hex Code: &#x204D;</p>
  <p>Black right bullet using HTML Code: &#8269;</p>
  <p id="point">Black right bullet using CSS Entity: </p>
  <p>Typed directly: ⁍</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+204D → &#x204D; in HTML. The browser turns it into ⁍.

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

3. CSS: use \204D 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 right bullet (⁍).

Named

No &name; form

U+204D has no standard named entity — use &#x204D; or &#8269;.

⁌

Not the left bullet

For a left-pointing bullet use ⁌ (U+204C).

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

\204D belongs in CSS. &#x204D; / &#8269; belong in HTML.

Semicolon

End references

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

Browser Support

Black right bullet (U+204D) and its entity forms (&#x204D;, &#8269;, 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 Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+204D / entities Full support

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

Key Takeaways

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

One line: U+204D → &#x204D; / &#8269; / CSS \204D.

Frequently Asked Questions

Use &#x204D; (hex), &#8269; (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 &#x204D;, &#8269;, or a typed ⁍ in UTF-8.
⁍ (U+204D) points right. ⁌ (U+204C) is black leftwards bullet. They are different code points.
HTML entities (&#8269; or &#x204D;) 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 ⁌).

Next: Black Right Pointing Index

Learn the HTML entity for the black right 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