HTML Entity for Reverse Prime (‵)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2035

What Is Reverse Prime?

Reverse prime (‵) is the Unicode character at U+2035 in the General Punctuation block. Official name: REVERSED PRIME. It is the mirrored form of the standard prime mark — used in specialized typography and notation.

Remember
Character     ‵
Unicode       U+2035
Named entity  ‵
Hex entity    ‵
Decimal       ‵
CSS escape    \2035
Not the same  ′ · ‶ · `

Prefer ‵ in HTML markup. You can also type ‵ in UTF-8, or use numeric forms when needed.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity‵HTML markup (preferred)
Direct character‵HTML text (UTF-8)
Hex entity‵HTML markup
Decimal entity‵HTML markup
CSS escape\2035Stylesheet content
Prime (related)′ (′, U+2032)Feet, arcminutes, first derivative

When to Use Which

SituationUse
Reversed prime mark required‵ or type ‵
Standard prime (feet / minutes / f′)′ / ′
Reversed double prime‶
Reversed triple prime‷
Generated text via ::before / ::aftercontent: "\2035"
Looking for a backtick substituteDo not — ` (U+0060) is a different character

Live Preview

Reverse prime rendered alone and next to related marks.

Inline text x‵ — reversed prime mark
Large glyph ‵
Compared ′   ‵   ‶   `
Monospace U+2035 ‵
With entities Named: ‵ | Hex: ‵ | Decimal: ‵

Complete HTML Example

One page that shows reverse prime with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ‵, plus a side-by-side comparison with prime.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Reverse Prime (‵) in HTML</title>
  <style>
    #point::after {
      content: "\2035";
    }
  </style>
</head>
<body>
  <p>Reverse Prime using Named Entity: &bprime;</p>
  <p>Reverse Prime using Hex Code: &#x2035;</p>
  <p>Reverse Prime using HTML Code: &#8245;</p>
  <p id="point">Reverse Prime using CSS Entity: </p>
  <p>Typed directly: ‵</p>
  <p>Compare: prime &prime; vs reverse &bprime;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &bprime; is the HTML5 name for U+2035 → ‵. Best default in markup.

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

3. Decimal: same code point as 8245 → &#8245;. Same result as hex and named.

4. CSS: use \2035 in content (not an HTML entity). #point::after appends that ‵ after the paragraph text.

5. Typed / compare: paste ‵ in UTF-8, or write &prime; vs &bprime; to see the mirrored marks side by side.

Pitfalls & Tips

Common mistakes when working with reverse prime.

vs ′

Not the same as prime

&bprime; is ‵ (U+2035). &prime; is ′ (U+2032). Use the reversed form only when you need it.

`

Not a backtick

The ASCII grave accent ` (U+0060) looks similar in some fonts but is a different character. Prefer &bprime; for typography.

‶

Double is different

Reversed double prime (‶, U+2036) is not &bprime;. See the reverse double prime page.

CSS vs HTML

Do not mix escapes

\2035 belongs in CSS strings. &bprime; / &#x2035; / &#8245; belong in HTML.

Semicolon

End named entities

Always finish with ; — write &bprime;, not &bprime.

Fonts

Glyph coverage varies

Some fonts render ‵ poorly or as a fallback. Prefer fonts with strong punctuation coverage for print-quality pages.

Browser Support

Reverse prime (U+2035) and its entity forms (&bprime;, &#x2035;, &#8245;, CSS \\2035) are supported in all mainstream browsers. Visible glyphs depend on punctuation font coverage.

✓ Universal support

Reverse Prime (&#x2035;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+2035 / entities Full support

Bottom line: Prefer &bprime; in HTML. Use &#x2035; / &#8245; when numeric form is required, and \\2035 only inside CSS content.

Key Takeaways

  • Unicode: reverse prime is U+2035 (decimal 8245) — glyph ‵.
  • HTML: prefer &bprime; — also &#x2035; / &#8245; / type ‵.
  • CSS: use \2035 inside content for generated text.
  • Meaning: ‵ is reversed prime — not &prime;, not `, not ‶.

One line: U+2035 → &bprime; / &#x2035; / &#8245; / CSS \2035.

Frequently Asked Questions

Use &bprime; (named), &#x2035; (hex), &#8245; (decimal), type ‵ directly in UTF-8, or the CSS escape \2035 in content. Prefer &bprime; in normal HTML.
U+2035 (REVERSED PRIME). Hex 2035, decimal 8245. It belongs to the General Punctuation block (U+2000–U+206F).
Yes. Use &bprime;. Numeric forms &#8245; and &#x2035; also work. Do not use &prime; — that is the standard prime U+2032.
No. ‵ is U+2035 (reversed prime, &bprime;). ′ is U+2032 (prime, &prime;). They face opposite directions and are different characters.
Use it for typography and mathematical or scientific notation that specifically requires a reversed prime mark. Prefer &prime; for feet, arcminutes, and first derivatives.
HTML entities (&bprime;, &#8245;, or &#x2035;) go in markup. The CSS escape \2035 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Reverse prime is Unicode U+2035 (decimal 8245) — glyph ‵ in the General Punctuation block. HTML5 names it &bprime; (from backwards prime). It is the mirrored form of prime &prime; (U+2032). Do not confuse it with reverse double prime (‶, U+2036) or the ASCII backtick `.

Next: Reverse Rotated Floral Heart Bullet

Learn the HTML entity for reverse rotated floral heart bullet (U+2619).

Floral Heart 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