HTML Entity for Comma Below (̦)

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

What You'll Learn

How to display the Comma Below (̦) in HTML and CSS. This character is U+0326 (COMBINING COMMA BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It is a nonspacing mark that attaches below the preceding base character—for example, ș adds a comma-shaped mark under s.

There is no named HTML entity for U+0326. Use ̦, ̦, or \326 in CSS content. Do not confuse U+0326 with Combining Cedilla U+0327 (̧), comma-above marks U+0313–U+0315, or punctuation comma U+002C (,).

⚡ Quick Reference — Comma Below

Unicode U+0326

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+0326
Hex code       ̦
HTML code      ̦
Named entity   —
CSS code       \326
Related        U+0327 = Combining Cedilla (below)
1

Complete HTML Example

This example shows U+0326 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: "\326";
  }
 </style>
</head>
<body>
<p>Comma Below using Hexa Decimal: &#x326;</p>
<p>Comma Below using HTML Code: &#806;</p>
<p id="point">Comma Below using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Comma Below 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 Below with base letters (serif font recommended):

With base letter ș   ț
Romanian context România   (precomposed ș often preferred)
Standalone mark ̦
Below vs above U+0326 (below)   vs   U+0313 ̓ (above)
Monospace refs &#x326; &#806; \326

🧠 How It Works

1

Hexadecimal Code

&#x326; references code point U+0326 using hex digits 326. Place it immediately after a base letter (e.g. s&#x326;).

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\326 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 below the preceding letter. s + U+0326 = . Distinct from U+0327 (cedilla below) and comma-above marks.

Use Cases

The Comma Below (̦) commonly appears in:

🇷🇴 Romanian

Historical and linguistic use under s and t; modern Romanian often uses precomposed letters (ș, ț).

🔤 Linguistics

Phonetic transcription and orthographic notation with below-comma diacritics.

✍️ Typography

Specialized diacritical marks in script and type design.

📖 Unicode documentation

Character tables and tutorials on combining marks below base characters.

🌐 Internationalization

Multilingual sites and localization with below-position diacritics.

📚 Education

Language-learning and philology resources.

♿ Accessibility

Prefer precomposed characters or clear text when assistive tech needs the full letter.

💡 Best Practices

Do

  • Place &#x326; immediately after the base character
  • Use <meta charset="utf-8"> on multilingual pages
  • Prefer precomposed ș / ț for Romanian when available
  • Choose fonts with Combining Diacritical Marks support
  • Set lang="ro" on Romanian content

Don’t

  • Confuse U+0326 with U+0327 (combining cedilla below)
  • Confuse with comma-above marks (U+0313–U+0315) or punctuation comma
  • Put the combining mark before the base letter
  • Put CSS escape \326 inside HTML text nodes
  • Assume every font renders below-comma identically to cedilla

Key Takeaways

1

Two HTML references for the combining mark

&#x326; &#806;
2

For CSS stylesheets, use the escape in the content property

\326
3

U+0326 attaches below the preceding base character

4

Romanian and linguistic use—not punctuation

5

No named entity for U+0326 — use numeric references

❓ Frequently Asked Questions

Use &#x326; (hex), &#806; (decimal), or \326 in CSS content. Place the mark after the base letter (e.g. s&#x326;). There is no named HTML entity for U+0326.
U+0326 (COMBINING COMMA BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 326, decimal 806. Renders below the base character.
When you need the combining comma below in typography, linguistics, Romanian or related orthography, or when documenting Unicode combining characters.
HTML numeric references (&#806; or &#x326;) go in markup after the base character. The CSS escape \326 is used in stylesheets, typically in the content property of pseudo-elements.
HTML5 named entities focus on commonly used characters. Combining marks like U+0326 use numeric codes. This is standard for 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