HTML Entity for Dot Below (̣)

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

What You'll Learn

How to display the combining dot below in HTML using hexadecimal, decimal, and CSS entity methods. This mark is U+0323 (COMBINING DOT BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It places a dot beneath a base letter and is essential for Vietnamese (e.g. for ạ) and other scripts that use dot-below diacritics.

There is no named HTML entity for U+0323. Use ̣, ̣, or \0323 in CSS content, placed immediately after the base character (e.g. ạ). Do not confuse with U+0307 (combining dot above).

⚡ Quick Reference — Dot Below

Unicode U+0323

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+0323
Hex code       ̣
HTML code      ̣
Named entity   —
CSS code       \0323
1

Complete HTML Example

This example demonstrates the combining dot below using hexadecimal code, decimal HTML code, and a CSS content escape, plus attaching the mark to a base letter:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0323";
  }
 </style>
</head>
<body>
<p>Dot Below using Hexadecimal: &#x0323;</p>
<p>Dot Below using HTML Code: &#803;</p>
<p id="point">Dot Below using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0323 and combining sequences are supported in modern browsers with UTF-8 and fonts that render Combining Diacritical Marks below the baseline:

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

👀 Live Preview

See the combining dot below on base letters:

Vietnamese ạ   ẹ   ọ
Dot above vs below ė (U+0307)   ạ (U+0323)
Isolated mark ̣
Monospace refs &#x0323; &#803; \0323

🧠 How It Works

1

Hexadecimal Code

&#x0323; uses the Unicode hexadecimal value 0323 for the combining dot below. Place it immediately after the base letter.

HTML markup
2

Decimal HTML Code

&#803; uses the decimal Unicode value 803 to display the same combining mark.

HTML markup
3

CSS Entity

\0323 is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Combines below the base letter

The mark stacks beneath the preceding character: (ạ). Unicode U+0323. No named entity. Distinct from U+0307 (dot above).

Use Cases

The combining dot below (U+0323) is commonly used in:

🇮🇳 Vietnamese

Letters like ạ, ẹ, ị, ọ, ụ (ạ, ẹ, ị, ọ, ụ) and tone combinations.

📚 Language learning

Dictionary and course sites that must render Vietnamese diacritics correctly.

🔤 Linguistics

Phonetic transcription and notation with a dot below letters.

📝 Typography

Publishing and eBooks that need reliable dot-below rendering across browsers.

🌐 i18n & accessibility

Internationalized apps and proper Unicode for screen readers.

📖 Entity guides

HTML entity references for combining marks below the baseline.

💡 Best Practices

Do

  • Place &#x0323; or &#803; immediately after the base letter
  • Use UTF-8 and fonts with Vietnamese / combining-mark support
  • Use phonetic fonts (Charis SIL, Doulos SIL, Noto Sans) when possible
  • Use \0323 only inside CSS content
  • Test rendering across browsers and fonts

Don’t

  • Confuse U+0323 (dot below) with U+0307 (dot above)
  • Assume a named entity exists for U+0323
  • Put the combining mark before the base letter
  • Put CSS escape \0323 in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

Combining mark U+0323—no named entity

&#x0323; &#803;
2

For CSS, use \0323 in the content property

\0323
3

COMBINING DOT BELOW—essential for Vietnamese (ạ)

4

Distinct from U+0307 (combining dot above)

5

UTF-8 + correct letter order—widely supported with suitable fonts

❓ Frequently Asked Questions

Use &#x0323; (hex), &#803; (decimal), or \0323 in CSS content immediately after the base letter. There is no named HTML entity for U+0323.
U+0323 (COMBINING DOT BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0323, decimal 803. Places a dot below a base letter.
For Vietnamese text and other languages that use the dot-below diacritic, linguistic and phonetic content, dictionary or language-learning sites, and any content that requires the dot below for correct display.
U+0307 places the dot above the character (ė). U+0323 places the dot below (ạ for ạ). Use U+0323 for Vietnamese and other dot-below scripts; use U+0307 for dot-above diacritics.
HTML5 named entities do not include combining diacritical marks. Use &#803; or &#x0323; in HTML, or \0323 in CSS. This is standard for characters in the Combining Diacritical Marks block.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, symbols, math operators, 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