HTML Entity for Comma Above Right (̕)

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

What You'll Learn

How to display the Comma Above Right (̕) in HTML and CSS. This character is U+0315 (COMBINING COMMA ABOVE RIGHT) in the Combining Diacritical Marks block (U+0300–U+036F). It is a nonspacing mark that attaches above and to the right of the preceding base character—for example, a̕.

There is no named HTML entity for U+0315. Use ̕, ̕, or \315 in CSS content. Do not confuse U+0315 with Comma Above Reversed U+0314 (̔), Comma Above U+0313, or punctuation comma U+002C (,).

⚡ Quick Reference — Comma Above Right

Unicode U+0315

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

Hex Code ̕

Hexadecimal reference

HTML Code ̕

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0315
Hex code       ̕
HTML code      ̕
Named entity   —
CSS code       \315
Related        U+0314 = Comma Above Reversed
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\315";
  }
 </style>
</head>
<body>
<p>Comma Above Right using Hexa Decimal: &#x315;</p>
<p>Comma Above Right using HTML Code: &#789;</p>
<p id="point">Comma Above Right using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Comma Above Right is supported in modern browsers when paired with a base character and a suitable font:

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

👀 Live Preview

See the Comma Above Right with base letters (serif font recommended):

With base letter a̕   e̕   o̕
Linguistics Phonetic: t̕a
Standalone mark ̕
Related marks U+0315 (above right)   vs   U+0314 ̔ (reversed)
Monospace refs &#x315; &#789; \315

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#789; uses the decimal Unicode value 789 for the same combining mark.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combines with base character

The mark attaches above and to the right of the preceding letter. a + U+0315 = . Distinct from U+0314 (comma above reversed).

Use Cases

The Comma Above Right (̕) commonly appears in:

✍️ Typography

Specialized diacritical notation in script and type design.

🔤 Linguistics

Phonetic transcription, orthography, and language studies.

📖 Scholarly text

Academic papers and editions using combining diacritical marks.

📄 Unicode documentation

Character tables and tutorials on combining marks.

🌐 Internationalization

Scripts and transliteration with positional diacritics.

📚 Education

Language-learning and philology resources.

♿ Accessibility

Prefer meaningful text or precomposed characters when assistive tech needs clarity.

💡 Best Practices

Do

  • Place &#x315; immediately after the base character
  • Use <meta charset="utf-8"> on multilingual pages
  • Choose fonts with Combining Diacritical Marks support
  • Keep combining mark order consistent in linguistic text
  • Use \315 only inside CSS content, not in HTML text nodes

Don’t

  • Confuse U+0315 with U+0314 (comma above reversed) or U+0313 (comma above)
  • Confuse with punctuation comma , (U+002C)
  • Put the combining mark before the base letter
  • Put CSS escape \315 inside HTML text nodes
  • Assume every font renders combining marks identically

Key Takeaways

1

Two HTML references for the combining mark

&#x315; &#789;
2

For CSS stylesheets, use the escape in the content property

\315
3

U+0315 attaches above and to the right of the base character

4

Typography and linguistics—not punctuation

5

No named entity for U+0315 — use numeric references

❓ Frequently Asked Questions

Use &#x315; (hex), &#789; (decimal), or \315 in CSS content. Place the mark after the base letter (e.g. a&#x315;). There is no named HTML entity for U+0315.
U+0315 (COMBINING COMMA ABOVE RIGHT). Combining Diacritical Marks block (U+0300–U+036F). Hex 315, decimal 789. Renders above and to the right of the base character.
When you need the combining comma above right in typography, linguistics, phonetic transcription, or when documenting Unicode combining characters.
HTML numeric references (&#789; or &#x315;) go in markup after the base character. The CSS escape \315 is used in stylesheets, typically in the content property of pseudo-elements.
HTML5 named entities focus on commonly used characters. Combining marks like U+0315 use numeric codes. This is standard for characters in the U+0300–U+036F range.

Explore More HTML Entities!

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