HTML Entity for Circumflex Accent (̂)

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

What You'll Learn

How to display the Combining Circumflex Accent (̂) in HTML and CSS. This character is U+0302 in the Combining Diacritical Marks block (U+0300–U+036F), approved in Unicode 1.1 (1993). It is a nonspacing mark that attaches above the preceding base character to form letters like â, ê, î, ô, and û in French and Portuguese.

There is no named HTML entity for U+0302. Use ̂ or ̂ in markup, or \302 in stylesheet content. Place the mark immediately after the base letter (e.g. â renders as â). Do not confuse with spacing circumflex U+005E (^), modifier letter U+02C6 (ˆ), or Circumflex Accent Below U+032D (̭).

⚡ Quick Reference — Circumflex Accent

Unicode U+0302

Combining Diacritical Marks (U+0300–U+036F)

Hex Code ̂

Hexadecimal reference

HTML Code ̂

Decimal reference

Named Entity

None for U+0302 (use precomposed â, etc.)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0302
Hex code       ̂
HTML code      ̂
Named entity   —
CSS code       \302
1

Complete HTML Example

This example shows U+0302 using hexadecimal and decimal references, combining with French vowels, plus a CSS content escape. There is no named HTML entity for the combining circumflex:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\302";
  }
 </style>
</head>
<body>
<p>Circumflex using Hexa Decimal: &#x0302;</p>
<p>Circumflex using HTML Code: &#770;</p>
<p id="point">Circumflex using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Combining Circumflex Accent is supported in all modern browsers when paired with a base character:

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

👀 Live Preview

See the Combining Circumflex Accent with French vowels and related characters:

French combining â   ê   î   ô   û
Precomposed â   ê   î   ô   û
Standalone mark ̂
Above vs below Above: U+0302 ̂   Below: U+032D ̭
Monospace refs &#x0302; &#770; \302

🧠 How It Works

1

Hexadecimal Code

&#x0302; references code point U+0302 using hex digits 0302. Place it immediately after a base letter (e.g. a&#x0302;).

HTML markup
2

Decimal HTML Code

&#770; is the decimal equivalent (770) for the same Combining Circumflex Accent character.

HTML markup
3

CSS Entity

\302 is the CSS escape for U+0302, used in the content property of ::before or ::after.

CSS stylesheet
=

Combining result

The mark attaches above the preceding base character to form letters like â, ê, and ô. No named entity exists for U+0302; use precomposed code points when available.

Use Cases

The Combining Circumflex Accent (̂) commonly appears in:

🇫🇷 French

Letters â, ê, î, ô, û and other circumflexed vowels.

🇵🇹 Portuguese

Orthography using circumflex on vowels (â, ê, ô, etc.).

🔤 Linguistics & IPA

Phonetic transcription and pronunciation guides with diacritics above letters.

📐 Mathematical notation

Exponent notation and technical symbols using circumflex-style marks.

📖 Dictionaries

Pronunciation keys, language learning, and lexical databases.

🌐 Multilingual web

Correct spelling in localized content with proper lang attributes.

♿ Accessibility

Use proper lang="fr" or lang="pt" so screen readers pronounce accented text correctly.

💡 Best Practices

Do

  • Place &#x0302; or &#770; immediately after the base letter
  • Prefer precomposed letters (â, ê, î, ô, û) when available
  • Set lang="fr", lang="pt", etc. on localized content
  • Use fonts with Latin Extended glyph support (Noto Serif, Georgia)
  • Declare <meta charset="utf-8"> for reliable combining

Don’t

  • Use spacing circumflex ^ (U+005E) when a combining mark is required
  • Put the combining mark before the base character
  • Confuse circumflex above (U+0302) with circumflex below (U+032D)
  • Put CSS escape \302 inside HTML text nodes
  • Expect a named HTML entity for U+0302—none exists

Key Takeaways

1

Two HTML references for the combining mark

&#x0302; &#770;
2

For CSS stylesheets, use the escape in the content property

\302
3

U+0302 Combining Circumflex Accent — above base letters

4

Forms French vowels: â, ê, î, ô, û

5

Circumflex below = U+032D; circumflex above = U+0302

❓ Frequently Asked Questions

Use &#x0302; (hex), &#770; (decimal), or \302 in CSS content. Place the mark right after the base letter (e.g. a&#x0302; for â). There is no named HTML entity for U+0302.
U+0302 (Combining Circumflex Accent). Combining Diacritical Marks block (U+0300–U+036F). Hex 0302, decimal 770. Placed above the base character.
For French, Portuguese, and other language spelling; pronunciation guides; linguistics; dictionary entries; and mathematical notation requiring a circumflex above a letter.
HTML numeric references (&#770; or &#x0302;) go directly in markup after the base letter. The CSS escape \302 is used in stylesheets, typically in the content property of pseudo-elements.
No for U+0302. For precomposed letters use numeric refs (e.g. &#226; for â). Spacing circumflex is U+005E (^); modifier letter circumflex is U+02C6 (ˆ).

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