HTML Entity for Comma Above Reversed (̔)

What You'll Learn
How to display the Comma Above Reversed (̔) in HTML and CSS. This character is U+0314 (COMBINING COMMA ABOVE REVERSED) in the Combining Diacritical Marks block (U+0300–U+036F). It is a nonspacing mark that attaches above the preceding base character—for example, a̔ renders as a with rough breathing (dasia).
There is no named HTML entity for U+0314. Use ̔, ̔, or \314 in CSS content. Do not confuse U+0314 with punctuation Colon U+003A (:) or with Comma Above U+0313 (smooth breathing / psili), which uses a different combining shape.
⚡ Quick Reference — Comma Above Reversed
U+0314Combining Diacritical Marks (U+0300–U+036F)
̔Hexadecimal reference
̔Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+0314
Hex code ̔
HTML code ̔
Named entity —
CSS code \314
Related U+0313 = Comma Above (psili)Complete HTML Example
This example shows U+0314 using hexadecimal and decimal references, combining with a base letter, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\314";
}
</style>
</head>
<body>
<p>Comma Above Reversed using Hexa Decimal: ̔</p>
<p>Comma Above Reversed using HTML Code: ̔</p>
<p id="point">Comma Above Reversed using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Comma Above Reversed is supported in modern browsers when paired with a base character and a suitable font:
👀 Live Preview
See the Comma Above Reversed with base letters (serif font recommended):
🧠 How It Works
Hexadecimal Code
̔ references code point U+0314 using hex digits 314. Place it immediately after a base letter (e.g. a̔).
Decimal HTML Code
̔ uses the decimal Unicode value 788 for the same combining mark.
CSS Entity
\314 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combines with base character
The mark attaches above the preceding letter. a + U+0314 = a̔ (rough breathing / dasia). Distinct from punctuation colon : (U+003A).
Use Cases
The Comma Above Reversed (̔) commonly appears in:
Rough breathing (dasia) in polytonic Greek and classical text.
Phonetic notation, aspiration marks, and language studies.
Academic papers, editions, and historical documents with combining marks.
Character tables and tutorials on combining diacritical marks.
Scripts and transliteration systems using reversed comma above.
Greek language learning sites and philology resources.
Ensure assistive tech receives meaningful text (e.g. precomposed Greek where possible).
💡 Best Practices
Do
- Place
̔immediately after the base character - Use
<meta charset="utf-8">on multilingual pages - Choose serif fonts with Greek and Combining Marks support
- Set
lang="el"when displaying Greek with breathing marks - Prefer precomposed Greek letters in Unicode when available for storage
Don’t
- Confuse U+0314 (combining) with punctuation comma
,(U+002C) or colon:(U+003A) - Put the combining mark before the base letter
- Mix up U+0314 (dasia) and U+0313 (psili / smooth breathing)
- Put CSS escape
\314inside HTML text nodes - Assume every font renders combining marks identically
Key Takeaways
Two HTML references for the combining mark
̔ ̔For CSS stylesheets, use the escape in the content property
\314U+0314 attaches above the preceding base character
Greek rough breathing (dasia) — not punctuation
No named entity for U+0314 — use numeric references
❓ Frequently Asked Questions
̔ (hex), ̔ (decimal), or \314 in CSS content. Place the mark after the base letter (e.g. a̔). There is no named HTML entity for U+0314.U+0314 (COMBINING COMMA ABOVE REVERSED). Combining Diacritical Marks block (U+0300–U+036F). Hex 314, decimal 788. Appears above the base character; used for Greek dasia (rough breathing).̔ or ̔) go in markup after the base character. The CSS escape \314 is used in stylesheets, typically in the content property of pseudo-elements.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, punctuation, symbols, and more.
8 people found this page helpful
