HTML Entity for Paragraph Sign (¶)

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

What You'll Learn

How to display the Paragraph Sign (¶) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+00B6 (PILCROW SIGN, also called paragraph sign) in the Latin-1 Supplement block (U+0080–U+00FF)—widely used in legal documents, academic writing, editing marks, and typography.

Render it with ¶, ¶, the named entity ¶, or CSS escape \00B6. Do not confuse ¶ with U+00A7 (§, section sign, §)—a common mix-up in older references.

⚡ Quick Reference — Paragraph Sign

Unicode U+00B6

Latin-1 Supplement (U+0080–U+00FF)

Hex Code ¶

Hexadecimal reference

HTML Code ¶

Decimal reference

Named Entity ¶

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00B6
Hex code       ¶
HTML code      ¶
Named entity   ¶
CSS code       \00B6
Also called    Pilcrow sign
Not the same   U+00A7 = section sign (§, §)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing ¶ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\00B6";
  }
 </style>
</head>
<body>
<p>Paragraph sign (hex): &#x00B6;</p>
<p>Paragraph sign (decimal): &#182;</p>
<p>Paragraph sign (named): &para;</p>
<p id="point">Paragraph sign (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Paragraph Sign (¶) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Paragraph Sign (¶) in document and editing contexts:

Single symbol
Editing mark ¶ New paragraph here
Named entity &para; renders as ¶
Not the same as Section sign § (&sect;)  |  Dagger †
Numeric refs &#x00B6; &#182; &para; \00B6

🧠 How It Works

1

Hexadecimal Code

&#x00B6; uses the Unicode hexadecimal value 00B6 to display the paragraph sign.

HTML markup
2

Decimal HTML Code

&#182; uses the decimal Unicode value 182 for the same character.

HTML markup
3

Named Entity

&para; is the standard HTML named entity for U+00B6—readable and widely supported.

HTML markup
4

CSS Entity

\00B6 is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.

CSS stylesheet
=

Pilcrow result

All four methods render . Unicode U+00B6 in Latin-1 Supplement. Next: Parallel To (∥).

Use Cases

The Paragraph Sign (¶) is commonly used in:

⚖ Legal documents

Statutes, contracts, and legal web content with paragraph references.

📚 Academic writing

Research papers, theses, and scholarly articles with editing notation.

✎ Editing marks

Proofreading, copyediting, and publishing workflow documentation.

⌨ Typography

Design references, style guides, and pilcrow symbol documentation.

📋 Unicode references

Character pickers, entity documentation, and Latin-1 symbol guides.

♿ Accessibility

Pair ¶ with visible text; provide context when used as an editing symbol.

💡 Best Practices

Do

  • Use &para; when readability matters in HTML source
  • Use &#x00B6; or &#182; in numeric-only contexts
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish paragraph sign ¶ from section sign §
  • Pick one reference style per project for consistency

Don’t

  • Confuse ¶ (pilcrow, &para;) with § (section, &sect;)
  • Use padded Unicode notation like U+000B6—the correct value is U+00B6
  • Use CSS escape \00B6 in HTML text nodes
  • Call ¶ a “section symbol”—that is U+00A7
  • Assume every font renders the pilcrow identically—test your typeface

Key Takeaways

1

Four ways to render U+00B6 in HTML and CSS

&#x00B6; &para;
2

For CSS stylesheets, use \00B6 in the content property

3

Unicode U+00B6 — PILCROW SIGN / paragraph sign (¶)

4

Not the section sign § — use &sect; for U+00A7

❓ Frequently Asked Questions

Use &#x00B6; (hex), &#182; (decimal), &para; (named), or \00B6 in CSS content. All four render ¶.
U+00B6 (PILCROW SIGN / PARAGRAPH SIGN). Latin-1 Supplement (U+0080–U+00FF). Hex 00B6, decimal 182, named &para;.
No. ¶ (U+00B6) is the paragraph sign / pilcrow with entity &para;. § (U+00A7) is the section sign with entity &sect;. They look similar but are different characters.
For legal and academic documents, editing and proofreading marks, typography references, and any content needing the pilcrow paragraph symbol.
Pilcrow is the common name for the paragraph sign ¶ (U+00B6). In HTML, render it with &para;, &#182;, or &#x00B6;.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, 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