HTML Entity for Reverse Double Prime (‶)

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

What You'll Learn

How to display the Reverse Double Prime symbol (‶) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2036 (REVERSED DOUBLE PRIME) in the General Punctuation block (U+2000–U+206F)—used in mathematical notation, typography, quotation marks, and scientific notation.

Render it with ‶, ‶, or CSS escape \2036. There is no named HTML entity. Do not confuse ‶ with U+2033 (″, double prime) or U+2035 (‵, reversed single prime).

⚡ Quick Reference — Reverse Double Prime

Unicode U+2036

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+2036
Hex code       ‶
HTML code      ‶
Named entity   (none)
CSS code       \2036
Meaning        Reversed double prime mark
Related        U+2033 = double prime (″)
               U+2035 = reversed prime (‵)
               U+2032 = prime (′)
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: "\2036";
  }
 </style>
</head>
<body>
<p>Reverse double prime (hex): &#x2036;</p>
<p>Reverse double prime (decimal): &#8246;</p>
<p id="point">Reverse double prime (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Reverse Double Prime symbol (‶) is widely supported in all modern browsers:

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

👀 Live Preview

See the Reverse Double Prime symbol (‶) in typographic contexts:

Single symbol
Notation x‶ — reversed double prime mark
Compare primes Prime ′   Double ″   Reversed ‵ ‶
Not the same as Double prime ″  |  Quotation mark “
Numeric refs &#x2036; &#8246; \2036

🧠 How It Works

1

Hexadecimal Code

&#x2036; uses the Unicode hexadecimal value 2036 to display the reverse double prime symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Reverse double prime result

All three methods render . Unicode U+2036 in General Punctuation. Next: Reverse Prime.

Use Cases

The Reverse Double Prime symbol (‶) is commonly used in:

🔢 Mathematics

Specialized notation involving reversed prime marks in formulas.

📝 Typography

Professional typesetting and typographic reference systems.

📖 Academic writing

Technical papers, scientific notation, and scholarly publications.

💬 Quotation marks

Specialized punctuation and reverse-prime quotation conventions.

📋 Unicode references

Character pickers, entity documentation, and punctuation guides.

♿ Accessibility

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

💡 Best Practices

Do

  • Use &#x2036; or &#8246; for inline reverse double prime marks
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ‶ for reversed double prime—not standard double prime ″
  • Test rendering in your target fonts for General Punctuation
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ‶ with double prime ″ or reversed single prime ‵
  • Use padded Unicode notation like U+02036—the correct value is U+2036
  • Use CSS escape \2036 in HTML text nodes
  • Substitute straight quotes (") when ‶ is required typographically
  • Assume every font renders prime symbols identically

Key Takeaways

1

Two HTML numeric references plus CSS for U+2036

&#x2036; &#8246;
2

For CSS stylesheets, use \2036 in the content property

3

Unicode U+2036 — REVERSED DOUBLE PRIME (‶)

4

Distinct from double prime ″, reversed prime ‵, and prime ′

❓ Frequently Asked Questions

Use &#x2036; (hex), &#8246; (decimal), or \2036 in CSS content. There is no named entity. All three render ‶.
U+2036 (REVERSED DOUBLE PRIME). General Punctuation block (U+2000–U+206F). Hex 2036, decimal 8246.
No. ‶ (U+2036) is the reversed double prime. ″ (U+2033) is the standard double prime. They are different Unicode characters.
For mathematical notation, typography, quotation marks, academic documentation, technical writing, and scientific notation.
Named HTML entities cover common characters. U+2036 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, primes, math operators, 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