HTML Entity for Quadruple Prime (⁗)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2057

What Is the Quadruple Prime Entity?

Quadruple prime (⁗) is the General Punctuation character at Unicode U+2057 (QUADRUPLE PRIME). It is a single glyph of four primes — used for a fourth-order prime in math (e.g. f ⁗(x)). The preferred HTML form is the named entity ⁗.

Remember
Character     ⁗
Unicode       U+2057
Named entity  ⁗
Hex entity    ⁗
Decimal       ⁗
CSS escape    \2057

Named, numeric, and UTF-8 forms produce the same glyph: ⁗. Prefer ⁗ for readable, portable markup.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⁗HTML markup (preferred)
Hex entity⁗HTML markup
Decimal entity⁗HTML markup
Direct character⁗HTML text (UTF-8 default)
CSS escape\2057Stylesheet content

When to Use Which

SituationUse
Readable HTML (best default)⁗
Numeric / generator output⁗ or ⁗
UTF-8 math notesType or paste ⁗
Generated text via ::before / ::aftercontent: "\2057"
First-order prime′ (U+2032)
Second-order / double prime″ (U+2033)

Live Preview

Quadruple prime rendered in common math contexts.

Glyph ⁗
Large glyph ⁗
In a function f⁗(x)
With entities Named: ⁗ | Hex: ⁗ | Decimal: ⁗
Related primes ′ (′) · ″ (″) · ‴ (triple)

Complete HTML Example

One page that shows quadruple prime with named, hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + Direct + CSS

Five ways to produce ⁗ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Quadruple Prime (⁗) in HTML</title>
  <style>
    #point::after {
      content: "\2057";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: f&qprime;(x)</p>
  <p>Using Hex Code: f&#x2057;(x)</p>
  <p>Using Decimal: f&#8279;(x)</p>
  <p>Using Direct Character: f⁗(x)</p>
  <p>Using CSS Entity: f<span id="point"></span>(x)</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &qprime; is the preferred HTML5 entity for U+2057.

2. Hex: U+2057 → &#x2057; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8279 → &#8279;.

4. Direct: paste ⁗ in a UTF-8 file with <meta charset="UTF-8">.

5. CSS: use \2057 in content (not an HTML entity). The empty #point span receives that ⁗ via ::after.

Pitfalls & Tips

Common mistakes when working with this prime entity.

Name

Prefer &qprime;

Use the named entity when possible. Numeric forms are fine for generators or when names are unavailable.

Case

&qprime; ≠ &Prime;

&Prime; (capital P) is double prime (U+2033). &qprime; is quadruple (U+2057). Names are case-sensitive.

Not ASCII

Do not fake it with apostrophes

Four ASCII ' characters are not a quadruple prime. Use &qprime; for one typographic glyph.

Order

Pick the right prime order

First: &prime;. Second: &Prime;. Fourth: &qprime;. Do not reuse the wrong entity for the order you mean.

CSS vs HTML

Do not mix escapes

\2057 belongs in CSS. &qprime; / &#x2057; belong in HTML.

UTF-8

Declare charset

If you paste ⁗ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Quadruple prime (U+2057) and its entity forms (&qprime;, &#x2057;, &#8279;, CSS \\2057) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Quadruple Prime (&#x2057;)

Prefer &qprime;, or encode with hex, decimal, or CSS escape — same glyph everywhere (when the font has it).

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2057 / &qprime; Full support

Bottom line: Prefer &qprime; in HTML. Use &#x2057; or &#8279; as numeric alternatives, and \\2057 only inside CSS content.

Key Takeaways

  • Unicode: quadruple prime is U+2057 (decimal 8279), General Punctuation.
  • HTML: prefer &qprime; — or &#x2057; / &#8279;.
  • CSS: use \2057 inside content for generated text.
  • Order: &prime; → &Prime; → &qprime; for 1st / 2nd / 4th.

One line: U+2057 → &qprime; / &#x2057; / CSS \2057.

Frequently Asked Questions

Prefer &qprime; (named). You can also use &#x2057; (hex), &#8279; (decimal), type ⁗ in UTF-8, or the CSS escape \2057 in content.
U+2057 (QUADRUPLE PRIME). Hex 2057, decimal 8279. It belongs to General Punctuation and is used for a fourth-order prime mark.
Yes. HTML5 defines &qprime; for U+2057. Prefer it over numeric forms when you want readable markup.
Use it in math and science for a fourth-order prime (f⁗). Prefer &prime; for first order and &Prime; for second order. Prefer &qprime; for portable HTML.
HTML entities (&qprime;, &#8279;, or &#x2057;) go in markup. The CSS escape \2057 is used in stylesheets (usually in the content property of ::before/::after). Both render ⁗.
⁗ (&qprime;) is four primes in one character. &prime; is ′ (U+2032, single). &Prime; is ″ (U+2033, double). Do not fake a quadruple prime with four ASCII apostrophes.

Did you know?

Quadruple prime (⁗) is Unicode U+2057 (decimal 8279) — QUADRUPLE PRIME in General Punctuation. HTML5 named entity: &qprime;. Prefer &qprime; in HTML. It marks a fourth-order prime (e.g. f&qprime;(x)). Single prime is &prime; (U+2032); double is &Prime; (U+2033).

Next: Quarter Note

Learn the HTML entity for the quarter note — the next character in this entity sequence.

Quarter Note tutorial →

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