HTML Entity for Candrabindu (̐)

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

What You'll Learn

How to display the Combining Candrabindu (̐) in HTML and CSS. This character is U+0310 in the Combining Diacritical Marks block (U+0300–U+036F), approved in Unicode 1.1 (1993). Candrabindu (Sanskrit: “moon dot”) is a nonspacing mark that attaches above the preceding character and indicates nasalization.

There is no named HTML entity for U+0310. Use ̐ or ̐ in markup, or \310 in CSS content. For native Devanagari text, use Devanagari Sign Candrabindu (U+0901, ँ) instead of the combining mark.

⚡ Quick Reference — Candrabindu

Unicode U+0310

Combining Diacritical Marks

Hex Code ̐

Hexadecimal reference

HTML Code ̐

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0310
Hex code       ̐
HTML code      ̐
Named entity   —
CSS code       \310
Devanagari     U+0901 (ँ)
1

Complete HTML Example

This example shows U+0310 using hexadecimal and decimal references, combining with a base vowel for transliteration, plus a CSS content escape. There is no named HTML entity:

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

🌐 Browser Support

U+0310 is widely supported when paired with a base character; combining placement depends on font shaping and Indic-aware fonts:

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

👀 Live Preview

See the combining candrabindu with base letters (font-dependent; Indic fonts render best):

With vowels a̐   i̐   u̐
Devanagari (U+0901) अँ इँ
Transliteration Nasalized vowel: a̐ (combining mark above)
Standalone mark ̐
Monospace refs &#x0310; &#784; \310

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#784; is the decimal equivalent (784) for the same Combining Candrabindu character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combining behavior

The candrabindu attaches above the preceding character. When alone it may display as a floating mark ̐. For Devanagari script use U+0901 (ँ).

Use Cases

The Candrabindu (̐) is commonly used for:

📜 Sanskrit texts

Transliteration of Sanskrit and Vedic texts with nasalization marks.

🔤 Phonetic guides

Linguistic notation, transliteration systems, and pronunciation guides.

📚 Academic content

Indic linguistics, comparative philology, and Sanskrit studies.

🕊 Vedic & religious texts

Mantras, hymns, and sacred texts with proper nasalization notation.

📖 Dictionary entries

Lexical databases, word entries, and pronunciation keys.

🌐 Multilingual typography

Latin-script pages mixing Indic transliteration notation.

♿ Accessibility

Pair with text or aria-label (e.g. “candrabindu” or “nasalization mark”).

💡 Best Practices

Do

  • Place the candrabindu immediately after the base character: a&#x0310;
  • Use U+0901 for native Devanagari (ँ), U+0310 for Latin transliteration
  • Use Indic-aware fonts (e.g. Noto Serif Devanagari) for reliable shaping
  • Declare <meta charset="utf-8"> for correct combining rendering
  • Use \310 only inside CSS content, not in HTML text nodes

Don’t

  • Insert a space between the base letter and the combining mark
  • Confuse U+0310 (combining) with U+0901 (Devanagari sign)
  • Expect a named HTML entity—none exists for U+0310
  • Assume every font positions the candrabindu correctly above all letters
  • Use decorative nasalization marks without accessible context

Key Takeaways

1

Two numeric references render the combining mark

&#x0310; &#784;
2

CSS content escape

\310
3

U+0310 attaches above the preceding character; order matters

4

Indicates nasalization; candrabindu = “moon dot” in Sanskrit

5

Native Devanagari: use U+0901 (ँ) instead

❓ Frequently Asked Questions

Use &#x0310; (hex), &#784; (decimal), or \310 in CSS content. Place the mark immediately after the base character (e.g. a&#x0310;). There is no named entity.
U+0310 (Combining Candrabindu). Combining Diacritical Marks (U+0300–U+036F). Hex 0310, decimal 784. Indicates nasalization.
For Sanskrit transliteration, phonetic guides, Vedic texts, and Indic linguistics. For Devanagari script directly, use U+0901 (&#x0901;).
Numeric references belong in HTML. The \310 escape belongs in stylesheets (for example on pseudo-elements). Both produce the same combining mark when used correctly.
No. Use &#x0310;, &#784;, or \310 in CSS depending on whether you are authoring markup or styles.

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