Typography & Punctuation

Bullet Point ()

Standard centered black circular dot used for unordered lists, breadcrumbs, and separator badges in web design.

One-Click Copyable Code Formats

HTML Named Entity
•
HTML Decimal Code
•
HTML Hex Code
•
CSS content (\XXXX)
\2022
JavaScript Unicode (\uXXXX)
\u2022
URL Percent Encoded
%E2%80%A2

Real-World Implementation Snippets

HTML5 Document
<p>Example: &bull;</p>
CSS ::before / ::after
.badge::before { content: '\2022 '; }
React JSX / TypeScript
<span>{"\u2022"}</span>
Frequently Asked Questions

Bullet Point (•) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&bull;". If using numeric codes, you can use the decimal code "&#8226;" or hex code "&#x2022;".