HTML Entity for Quadruple Prime (⁗)

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

What You'll Learn

How to display the quadruple prime symbol (⁗) in HTML using various entity methods. This punctuation mark represents four stacked primes—commonly used for the fourth derivative in mathematics (e.g. f⁗(x)).

This character is part of the General Punctuation Unicode block and can be rendered with a hexadecimal reference, a decimal reference, the named entity ⁗, or a CSS escape in the content property. Do not confuse ⁗ with typing four separate prime marks ′′′′ or with U+2033 (″, double prime).

⚡ Quick Reference — Quadruple Prime

Unicode U+2057

General Punctuation block

Hex Code ⁗

Hexadecimal reference

HTML Code ⁗

Decimal reference

Named Entity ⁗

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2057
Hex code       ⁗
HTML code      ⁗
Named entity   ⁗
CSS code       \2057
Meaning        Quadruple prime (four primes)
Related        U+2032 = Prime (′)
               U+2033 = Double prime (″)
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: "\2057";
  }
 </style>
</head>
<body>
<p>Derivative (hex): f&#x2057;(x)</p>
<p>Derivative (decimal): f&#8279;(x)</p>
<p>Derivative (named): f&qprime;(x)</p>
<p>Derivative (CSS): f<span id="point"></span>(x)</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The quadruple prime entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ⁗ rendered live in different contexts:

Fourth derivative f⁗(x)
Large glyph
Prime family ′ prime   ″ double   ⁗ quadruple
Not the same as Four separate primes ′′′′
Entity refs &#x2057; &#8279; &qprime; \2057

🧠 How It Works

1

Hexadecimal Code

&#x2057; uses the Unicode hexadecimal value 2057 to display the quadruple prime symbol.

HTML markup
2

Decimal HTML Code

&#8279; uses the decimal Unicode value 8279 to display the same character.

HTML markup
3

CSS Entity

\2057 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
4

Named Entity

&qprime; is the semantic named entity — the easiest to read in source HTML for quadruple prime.

HTML markup
=

Same visual result

All four methods produce: . Unicode U+2057 in the General Punctuation block (U+2000–U+206F).

Use Cases

The quadruple prime symbol (⁗) commonly appears in:

📐 Mathematics

Fourth derivative notation: f⁗(x).

📄 Academic Papers

Physics and engineering texts using higher-order derivatives.

📝 Typography

Compact four-prime mark instead of four separate ′ characters.

🎓 Education

Calculus courses teaching derivative notation in HTML.

📋 Unicode References

Character pickers and General Punctuation documentation.

💻 Scientific Web Apps

Online calculators and math notation tools.

♿ Accessibility

Pair ⁗ with “fourth derivative” in alt text where helpful.

💡 Best Practices

Do

  • Use &qprime; for readable quadruple-prime markup
  • Distinguish ⁗ from ′ (prime) and ″ (double prime)
  • Pick one style (hex / decimal / named) per project
  • Use MathML or LaTeX for complex formulas when appropriate
  • Test rendering across browsers and math fonts

Don’t

  • Substitute four ′ characters when a single ⁗ (&qprime;) is intended
  • Confuse ⁗ with ″ (double prime for inches/seconds)
  • Use the placeholder &xxx; from outdated references—use &qprime;
  • Use CSS escape \2057 inside HTML text nodes
  • Use HTML entities in JS (use \u2057 instead)

Key Takeaways

1

Three HTML references all render ⁗

&#x2057; &#8279; &qprime;
2

For CSS stylesheets, use the escape in the content property

\2057
3

Unicode U+2057 belongs to the General Punctuation block (U+2000–U+206F)

4

Prefer &qprime; for readability—standard named entity for quadruple prime

❓ Frequently Asked Questions

Use &#x2057; (hex), &#8279; (decimal), &qprime; (named), or \2057 in CSS content. All produce ⁗.
U+2057 (QUADRUPLE PRIME). General Punctuation block. Hex 2057, decimal 8279.
Fourth derivatives in mathematics (f⁗), and as a single glyph for four prime marks in typographic or scientific notation.
′ (U+2032, &prime;) is one prime. ″ (U+2033, &Prime;) is two. ⁗ (U+2057, &qprime;) is a single composite glyph for four primes.
Yes. &qprime;, &#8279;, and &#x2057; are equivalent in modern browsers and all render ⁗.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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