HTML Entity for Reversed Pilcrow Sign (⁋)

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

What You'll Learn

How to display the Reversed Pilcrow Sign (⁋) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+204B (REVERSED PILCROW SIGN) in the General Punctuation block (U+2000–U+206F)—a reversed paragraph mark used in typography, document formatting, and text editing.

Render it with ⁋, ⁋, or CSS escape \204B. There is no named HTML entity. Do not confuse ⁋ with U+00B6 (¶, standard pilcrow, ¶) or the section sign §.

⚡ Quick Reference — Reversed Pilcrow Sign

Unicode U+204B

General Punctuation (U+2000–U+206F)

Hex Code ⁋

Hexadecimal reference

HTML Code ⁋

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+204B
Hex code       ⁋
HTML code      ⁋
Named entity   (none)
CSS code       \204B
Meaning        Reversed pilcrow (paragraph mark)
Related        U+00B6 = pilcrow / paragraph sign (¶, ¶)
               U+00A7 = section sign (§, §)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing ⁋ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\204B";
  }
 </style>
</head>
<body>
<p>Reversed pilcrow (hex): &#x204B;</p>
<p>Reversed pilcrow (decimal): &#8267;</p>
<p id="point">Reversed pilcrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Reversed Pilcrow Sign (⁋) is widely supported in all modern browsers:

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

👀 Live Preview

See the Reversed Pilcrow Sign (⁋) in typographic contexts:

Single symbol
Paragraph marker ⁋ New paragraph begins here
Compare marks Pilcrow ¶   Reversed ⁋   Section §
Not the same as Paragraph sign ¶ (&para;)
Numeric refs &#x204B; &#8267; \204B

🧠 How It Works

1

Hexadecimal Code

&#x204B; uses the Unicode hexadecimal value 204B to display the reversed pilcrow sign.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\204B is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Reversed pilcrow result

All three methods render . Unicode U+204B in General Punctuation. Next: Reversed Semicolon.

Use Cases

The Reversed Pilcrow Sign (⁋) is commonly used in:

📝 Typography

Typographic projects, font showcases, and specialized paragraph marks.

📄 Document formatting

Manuscripts, formatted text, and editorial layout references.

✎ Text editing

Content tools and editors showing non-printing or formatting marks.

🎨 Creative design

Artistic compositions and decorative paragraph indicators.

📖 Academic docs

Scholarly papers and publishing workflows with specialized notation.

♿ Accessibility

Pair ⁋ with descriptive text when used as a meaningful formatting symbol.

💡 Best Practices

Do

  • Use &#x204B; or &#8267; for inline reversed pilcrow marks
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ⁋ for reversed pilcrow—not standard pilcrow ¶ (&para;)
  • Link to Paragraph Sign when documenting related marks
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ⁋ with pilcrow ¶ or section sign §
  • Use padded Unicode notation like U+0204B—the correct value is U+204B
  • Use CSS escape \204B in HTML text nodes
  • Use ¶ when the reversed pilcrow ⁋ is required
  • Assume every font renders punctuation symbols identically

Key Takeaways

1

Two HTML numeric references plus CSS for U+204B

&#x204B; &#8267;
2

For CSS stylesheets, use \204B in the content property

3

Unicode U+204B — REVERSED PILCROW SIGN (⁋)

4

Distinct from pilcrow ¶ (¶) and section sign § (§)

❓ Frequently Asked Questions

Use &#x204B; (hex), &#8267; (decimal), or \204B in CSS content. There is no named entity. All three render ⁋.
U+204B (REVERSED PILCROW SIGN). General Punctuation block (U+2000–U+206F). Hex 204B, decimal 8267.
No. ⁋ (U+204B) is the reversed pilcrow sign. ¶ (U+00B6, &para;) is the standard pilcrow. They are different Unicode characters.
For typographic symbols, document formatting, text editing, creative designs, paragraph markers, and typography projects requiring a reversed paragraph mark.
Named HTML entities cover common characters like ¶ (U+00B6). U+204B uses numeric hex or decimal codes or CSS escapes, which is standard for General Punctuation symbols.

Explore More HTML Entities!

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