HTML Entity for Reversed Semicolon (⁏)

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

What You'll Learn

How to display the Reversed Semicolon (⁏) in HTML using numeric references, the named entity, and CSS escapes. This character is U+204F (REVERSED SEMICOLON) in the General Punctuation block (U+2000–U+206F)—used in typographic design, specialized punctuation, and academic documentation.

You can use the named entity ⁏, hex ⁏, decimal ⁏, or CSS \204F. Do not confuse ⁏ with the standard semicolon ; (U+003B) or U+204B (⁋, reversed pilcrow sign).

⚡ Quick Reference — Reversed Semicolon

Unicode U+204F

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

Hex Code ⁏

Hexadecimal reference

HTML Code ⁏

Decimal reference

Named Entity ⁏

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+204F
Hex code       ⁏
HTML code      ⁏
Named entity   ⁏
CSS code       \204F
Meaning        Reversed semicolon punctuation mark
Related        U+003B = semicolon (;)
               U+204B = reversed pilcrow (⁋)
               U+00B6 = pilcrow (¶, ¶)
Block          General Punctuation (U+2000–U+206F)
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: "\204F";
  }
 </style>
</head>
<body>
<p>Reversed semicolon (hex): &#x204F;</p>
<p>Reversed semicolon (decimal): &#8271;</p>
<p>Reversed semicolon (named): &bsemi;</p>
<p id="point">Reversed semicolon (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+204F is widely supported in all modern browsers:

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

👀 Live Preview

See the Reversed Semicolon (⁏) in typographic contexts:

Single symbol
Typographic use ⁏ specialized punctuation mark
Compare punctuation Semicolon ;   Reversed ⁏   Pilcrow ⁋
Named entity &bsemi;
Numeric refs &#x204F; &#8271; \204F

🧠 How It Works

1

Hexadecimal Code

&#x204F; uses Unicode hex 204F to display the reversed semicolon.

HTML markup
2

Decimal HTML Code

&#8271; is the decimal equivalent (8271) for the same character.

HTML markup
3

Named HTML Entity

&bsemi; is the standard named entity for U+204F—readable in HTML source.

HTML markup
4

CSS Entity

\204F is the CSS escape for U+204F, used in pseudo-element content.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+204F in General Punctuation. Next: Rial Sign.

Use Cases

The Reversed Semicolon (⁏) is commonly used in:

📝 Typography

Typographic projects, font design, and specialized punctuation displays.

🔢 Mathematics

Formal notation and academic content requiring unique punctuation marks.

📖 Academic writing

Research papers, scholarly articles, and publishing workflows.

💬 Technical docs

Specifications and documentation with specialized typographic notation.

📋 Unicode references

Character pickers, entity documentation, and punctuation guides.

♿ Accessibility

Pair ⁏ with descriptive text when used as a meaningful symbol.

💡 Best Practices

Do

  • Use &bsemi; for readable reversed semicolon markup
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ⁏ for reversed semicolon—not standard semicolon ;
  • Link to Reversed Pilcrow Sign when documenting related marks
  • Pick one reference style per project for consistency

Don’t

  • Confuse ⁏ with the ASCII semicolon (;) or reversed pilcrow ⁋
  • Use padded Unicode notation like U+0204F—the correct value is U+204F
  • Use CSS escape \204F in HTML text nodes
  • Substitute a rotated or flipped ; when ⁏ is required typographically
  • Assume every font renders General Punctuation identically

Key Takeaways

1

Four ways to render U+204F in HTML and CSS

&bsemi; &#8271;
2

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

3

Unicode U+204F — REVERSED SEMICOLON (⁏)

4

Distinct from semicolon (;) and reversed pilcrow ⁋

❓ Frequently Asked Questions

Use &bsemi; (named entity), &#x204F; (hex), &#8271; (decimal), or \204F in CSS content. All four render ⁏.
U+204F (REVERSED SEMICOLON). General Punctuation block (U+2000–U+206F). Hex 204F, decimal 8271.
No. ⁏ (U+204F) is the reversed semicolon. The standard semicolon is U+003B (;). They are different Unicode characters.
For typographic design, mathematical notation, punctuation marks, academic documentation, technical writing, and specialized typographic symbols.
&bsemi; is the standard named entity for U+204F and is the most readable option in HTML source.

Explore More HTML Entities!

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