HTML Entity for Triple Prime (‴)

What You'll Learn
How to display the Triple Prime (‴) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2034 (TRIPLE PRIME) in the General Punctuation block (U+2000–U+206F)—used for the third derivative in mathematics and typographic triple-prime notation.
Render it with ‴, ‴, ‴, or CSS escape \2034. Pair with ′ (′) and ″ (″) for the prime series: f′(x), f″(x), f‴(x).
⚡ Quick Reference — Triple Prime
U+2034General Punctuation block
‴Hexadecimal reference
‴Decimal reference
‴Most readable option
Name Value
──────────── ──────────
Unicode U+2034
Hex code ‴
HTML code ‴
Named entity ‴
CSS code \2034
Block General Punctuation (U+2000–U+206F)
Official name TRIPLE PRIME
Related U+2032 = ′, U+2033 = ″, U+2057 = ⁗Complete HTML Example
This example demonstrates the Triple Prime (‴) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2034";
}
</style>
</head>
<body>
<p>Using Named Entity: ‴</p>
<p>Using Hexadecimal: ‴</p>
<p>Using HTML Code: ‴</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2034 is widely supported in modern browsers; General Punctuation glyphs render in virtually all fonts:
👀 Live Preview
See the Triple Prime (‴) in mathematical and typographic context:
🧠 How It Works
Named Entity
‴ is the HTML named entity for the Triple Prime (‴) — the most readable option in source code.
Hexadecimal Code
‴ uses the Unicode hexadecimal value 2034 to display the Triple Prime symbol.
Decimal HTML Code
‴ uses the decimal Unicode value 8244 to display the same character.
CSS Entity
\2034 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce ‴. Unicode U+2034. Not reverse triple prime ‷ or triple tilde ≋. Previous: Triple Integral. Next: Triple Tilde.
Use Cases
The Triple Prime (‴) commonly appears in:
Third derivative notation: f‴(x).
Research papers and technical publications with prime notation.
Calculus tutorials and online math courses in HTML.
Technical specifications with typographic prime marks.
Correct prime symbols instead of straight quotes or apostrophes.
Unicode and HTML entity guides for General Punctuation.
💡 Best Practices
Do
- Prefer
‴for readable HTML source - Use ‴ for third derivatives alongside ′ and ″
- Use proper prime glyphs instead of repeated apostrophes (
''') - Pick one entity style per project for consistency
- For complex equations, consider MathML, MathJax, or KaTeX
Don’t
- Confuse ‴ (triple prime) with ‷ (reversed triple prime)
- Confuse ‴ with ≋ (triple tilde math operator)
- Use three straight quotes (
''') when ‴ is intended - Put CSS escape
\2034directly in HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) in your document
Key Takeaways
Four ways to render ‴ in HTML
‴ ‴ ‴For CSS stylesheets, use the escape in the content property
\2034Unicode U+2034 — Triple Prime
Prefer ‴ for readability in HTML source
Prime series: ′ ″ ‴
❓ Frequently Asked Questions
‴ (named), ‴ (hex), ‴ (decimal), or \2034 in CSS content. All produce ‴.U+2034 (TRIPLE PRIME). General Punctuation block (U+2000–U+206F). Hex 2034, decimal 8244. Used for third derivatives and typographic triple-prime notation.‴ is the most readable option when writing HTML by hand. Numeric codes (‴ or ‴) are equally valid. All render ‴.‴ is part of the HTML standard and is widely supported across modern browsers. It is the preferred method for displaying ‴ in HTML documents.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, math operators, symbols, and more.
8 people found this page helpful
