HTML Entity for Reverse Triple Prime (‷)

What You'll Learn
How to display the Reverse Triple Prime symbol (‷) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2037 (REVERSED TRIPLE PRIME) in the General Punctuation block (U+2000–U+206F)—used in mathematical notation, typography, and scientific notation.
Render it with ‷, ‷, or CSS escape \2037. There is no named HTML entity. Do not confuse ‷ with U+2034 (‴, triple prime) or U+2036 (‶, reversed double prime).
⚡ Quick Reference — Reverse Triple Prime
U+2037General Punctuation (U+2000–U+206F)
‷Hexadecimal reference
‷Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2037
Hex code ‷
HTML code ‷
Named entity (none)
CSS code \2037
Meaning Three reversed prime marks
Related U+2034 = triple prime (‴)
U+2035 = reversed prime (‵, ‵)
U+2036 = reversed double prime (‶)
U+2033 = double 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: "\2037";
}
</style>
</head>
<body>
<p>Reverse triple prime (hex): ‷</p>
<p>Reverse triple prime (decimal): ‷</p>
<p id="point">Reverse triple prime (CSS): </p>
</body>
</html>🌐 Browser Support
The Reverse Triple Prime symbol (‷) is widely supported in all modern browsers:
👀 Live Preview
See the Reverse Triple Prime symbol (‷) in typographic contexts:
🧠 How It Works
Hexadecimal Code
‷ uses the Unicode hexadecimal value 2037 to display the reverse triple prime symbol.
Decimal HTML Code
‷ uses the decimal Unicode value 8247 for the same character.
CSS Entity
\2037 is used in CSS stylesheets in the content property of pseudo-elements.
Reverse triple prime result
All three methods render ‷. Unicode U+2037 in General Punctuation. Next: Reversed Pilcrow Sign.
Use Cases
The Reverse Triple Prime symbol (‷) is commonly used in:
Specialized notation involving three reversed prime marks in formulas.
Professional typesetting and typographic reference systems.
Technical papers, scientific notation, and scholarly publications.
Engineering and physics content with specialized prime notation.
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 triple prime marks - Set
<meta charset="utf-8">for reliable rendering - Use ‷ for reversed triple prime—not standard triple prime ‴
- Link to Reverse Prime and Reverse Double Prime when documenting related marks
- Pick one numeric style per project for consistency
Don’t
- Confuse ‷ with triple prime ‴ or reversed double prime ‶
- Use padded Unicode notation like U+02037—the correct value is
U+2037 - Use CSS escape
\2037in HTML text nodes - Stack three ‵ entities when a single ‷ is the correct character
- Assume every font renders prime symbols identically
Key Takeaways
Two HTML numeric references plus CSS for U+2037
‷ ‷For CSS stylesheets, use \2037 in the content property
Unicode U+2037 — REVERSED TRIPLE PRIME (‷)
Distinct from triple prime ‴, reversed prime ‵, and reversed double prime ‶
Previous: Reverse Tilde Equals (⋍) Next: Reversed Pilcrow Sign
❓ Frequently Asked Questions
‷ (hex), ‷ (decimal), or \2037 in CSS content. There is no named entity. All three render ‷.U+2037 (REVERSED TRIPLE PRIME). General Punctuation block (U+2000–U+206F). Hex 2037, decimal 8247.Explore More HTML Entities!
Discover 1500+ HTML character references — primes, punctuation, math operators, and more.
8 people found this page helpful
