HTML Entity for Black Right Bullet (⁍)

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

What You'll Learn

How to display Black Right Bullet (⁍) in HTML and CSS. This character is U+204D in the General Punctuation block (U+2000–U+206F), added in Unicode 3.0 (1999). Its Unicode name is BLACK RIGHTWARDS BULLET—a right-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+204D. Use ⁍ or ⁍ in markup, or \204D 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 Right Bullet

Unicode U+204D

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

Complete HTML Example

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

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

🌐 Browser Support

U+204D 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 leftwards 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 &#x204D; &#8269; \204D

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#8269; is the decimal equivalent (8269) for the same Black Right Bullet character.

HTML markup
3

CSS Entity

\204D is the CSS escape for U+204D, 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+204D.

Use Cases

The Black Right 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

Right-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+204D
  • Pair ⁍ with ⁌ (black leftwards 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 \204D 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+204D with U+204C (leftwards 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

&#x204D; &#8269;
2

CSS content escape

\204D
3

U+204D is a rightwards bullet; pairs with Black Leftwards Bullet U+204C

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 &#x204D; (hex), &#8269; (decimal), or \204D in CSS content. There is no named entity; all valid methods render ⁍.
U+204D (hex 204D, decimal 8269). General Punctuation (U+2000–U+206F). Unicode name BLACK RIGHTWARDS BULLET.
For bullet lists, UI design, directional indicators, navigation markers, and right-pointing list markers.
Numeric references belong in HTML. The \204D escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x204D;, &#8269;, or \204D 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