HTML Entity for Reverse Double Prime (‶)

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
U+2036General Punctuation (U+2000–U+206F)
‶Hexadecimal reference
‶Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ‶ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2036";
}
</style>
</head>
<body>
<p>Reverse double prime (hex): ‶</p>
<p>Reverse double prime (decimal): ‶</p>
<p id="point">Reverse double prime (CSS): </p>
</body>
</html>🌐 Browser Support
The Reverse Double Prime symbol (‶) is widely supported in all modern browsers:
👀 Live Preview
See the Reverse Double Prime symbol (‶) in typographic contexts:
🧠 How It Works
Hexadecimal Code
‶ uses the Unicode hexadecimal value 2036 to display the reverse double prime symbol.
Decimal HTML Code
‶ uses the decimal Unicode value 8246 for the same character.
CSS Entity
\2036 is used in CSS stylesheets in the content property of pseudo-elements.
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:
Specialized notation involving reversed prime marks in formulas.
Professional typesetting and typographic reference systems.
Technical papers, scientific notation, and scholarly publications.
Specialized punctuation and reverse-prime quotation conventions.
Character pickers, entity documentation, and punctuation guides.
Pair ‶ with descriptive text when used as a meaningful symbol.
💡 Best Practices
Do
- Use
‶or‶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
\2036in HTML text nodes - Substitute straight quotes (
") when ‶ is required typographically - Assume every font renders prime symbols identically
Key Takeaways
Two HTML numeric references plus CSS for U+2036
‶ ‶For CSS stylesheets, use \2036 in the content property
Unicode U+2036 — REVERSED DOUBLE PRIME (‶)
Distinct from double prime ″, reversed prime ‵, and prime ′
Previous: Retroflex Hook Below Next: Reverse Prime
❓ Frequently Asked Questions
‶ (hex), ‶ (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.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, primes, math operators, and more.
8 people found this page helpful
