Typography & Punctuation

Pilcrow / Paragraph Sign ()

The pilcrow mark denotes a paragraph boundary or section break in editorial proofreading and typography.

One-Click Copyable Code Formats

HTML Named Entity
¶
HTML Decimal Code
¶
HTML Hex Code
¶
CSS content (\XXXX)
\00B6
JavaScript Unicode (\uXXXX)
\u00B6
URL Percent Encoded
%C2%B6

Real-World Implementation Snippets

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

Pilcrow / Paragraph Sign (¶) HTML Entity FAQ

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

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