HTML Entity for Double Prime (″)

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

What You'll Learn

How to display the Double Prime (″) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2033 (DOUBLE PRIME) in the General Punctuation block (U+2000–U+206F)—used for inches, seconds (time or angle), and the second derivative in mathematics.

Render it with ″, ″, ″, or CSS escape \2033. Pair with ′ (′) for single prime (feet, minutes, first derivative): 5′ 10″.

⚡ Quick Reference — Double Prime

Unicode U+2033

General Punctuation block

Hex Code ″

Hexadecimal reference

HTML Code ″

Decimal reference

Named Entity ″

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2033
Hex code       ″
HTML code      ″
Named entity   ″
CSS code       \2033
1

Complete HTML Example

This example demonstrates the Double Prime (″) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2033";
  }
 </style>
</head>
<body>
<p>Double Prime using Hexadecimal: &#x2033;</p>
<p>Double Prime using HTML Code: &#8243;</p>
<p>Double Prime using Named Entity: &Prime;</p>
<p id="point">Double Prime using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2033 is widely supported in modern browsers; General Punctuation glyphs render in virtually all fonts:

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

👀 Live Preview

See the Double Prime (″) in measurements and math notation:

Feet and inches 5′ 10″
Large glyph
Single vs double ′ &prime; single   ″ &Prime; double
Named entity &Prime; → ″
Monospace refs &Prime; &#x2033; &#8243; \2033

🧠 How It Works

1

Named Entity

&Prime; is the HTML named entity for the Double Prime (″) — capital P in Prime distinguishes it from &prime; (′).

HTML markup
2

Hexadecimal Code

&#x2033; uses the Unicode hexadecimal value 2033 to display the Double Prime symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2033. Pair with &prime; (′) for feet/minutes or first derivative. Do not confuse with straight quotes (").

Use Cases

The Double Prime symbol (″) commonly appears in the following scenarios:

📏 Inches

Length measurements (e.g. 5″ display, 10″ diameter). Often with ′ for feet: 5′ 10″.

⏱ Seconds

Time (3′ 45″) or arc seconds in coordinates (30° 15′ 20″).

📐 Mathematics

Second derivative notation (e.g. f″(x), y″). Single prime ′ for first derivative.

📄 Typography

Formal typesetting where the double prime is preferred over straight quotes for measurements.

📖 Unicode docs

HTML entity lists and typography guides for General Punctuation.

♿ Accessibility

Pair measurements with clear context or units (e.g. “5 inches”) for screen readers.

💡 Best Practices

Do

  • Prefer &Prime; for readable HTML source
  • Pair ″ with &prime; (′) for feet/inches or derivatives
  • Use typographic primes instead of straight quotes (") for measurements
  • Provide context for screen readers on measurement pages
  • Pick one entity style per project for consistency

Don’t

  • Confuse &Prime; (″) with &prime; (′) or straight quotes (")
  • Use CSS escape \2033 inside HTML markup
  • Use double prime for quotation marks—use proper quote entities instead
  • Forget UTF-8 (<meta charset="utf-8">) in your document
  • Assume every font distinguishes ′ and ″ clearly

Key Takeaways

1

Four ways to render ″ in HTML

&#x2033; &#8243; &Prime;
2

For CSS stylesheets, use the escape in the content property

\2033
3

Unicode U+2033 — inches, seconds, second derivative

4

Prefer &Prime; for readability in HTML source

5

Feet and inches: 5′ 10″

❓ Frequently Asked Questions

Use &Prime; (named), &#x2033; (hex), &#8243; (decimal), or \2033 in CSS content. All produce ″.
U+2033 (DOUBLE PRIME). General Punctuation block. Hex 2033, decimal 8243. Used for inches, seconds, and second derivative notation.
When you need inches, seconds of time or arc, second derivative (f″), or typographically correct double-prime notation in HTML.
HTML numeric references (&#8243; or &#x2033;) and the named entity &Prime; go in markup. The CSS escape \2033 is used in stylesheets, typically in the content property of pseudo-elements.
&Prime; (capital P in Prime) is the named HTML entity for U+2033. It renders as ″. For single prime use &prime; (′).

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, 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