HTML Entity for Lowercase A Latin (ͣ)

What You'll Learn
How to display the combining Latin small letter a (ͣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character (U+0363) is a combining mark from the Combining Diacritical Marks block, used in linguistics and phonetic notation.
Render it with ͣ, ͣ, or CSS escape \363. There is no named HTML entity. As a combining character, it typically follows a base character to form a composite glyph.
⚡ Quick Reference — Lowercase A Latin Entity
U+0363Combining Diacritical Marks
ͣHexadecimal reference
ͣDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0363
Hex code ͣ
HTML code ͣ
Named entity (none)
CSS code \363
Meaning Combining Latin small letter a
Type Combining mark (not standalone)
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the combining Latin small letter a (ͣ) using hexadecimal code, decimal HTML code, and a CSS content escape. The combining example shows it after a base letter:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\363";
}
</style>
</head>
<body>
<p>Symbol (hex): ͣ</p>
<p>Symbol (decimal): ͣ</p>
<p id="point">Symbol (CSS): </p>
<p>Combining: eͣ</p>
</body>
</html>🌐 Browser Support
The combining Latin small letter a (ͣ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the combining Latin small letter a (ͣ) and how it combines with a base character:
a)🧠 How It Works
Hexadecimal Code
ͣ uses the Unicode hexadecimal value 363 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ͣ uses the decimal Unicode value 867 to display the same character. A common method for combining characters.
CSS Entity
\363 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combining mark behavior
All three methods produce ͣ. Unicode U+0363 is a combining character in the Combining Diacritical Marks block. Place it immediately after a base letter (e.g. eͣ) so it combines correctly. There is no named HTML entity.
Use Cases
The combining Latin small letter a (ͣ) is commonly used in:
Phonetic transcription where a small a is used as a combining mark for vowel quality.
IPA extensions or scholarly notation using combining letters as diacritics.
Linguistics and language research sites requiring correct combining character rendering.
Academic content in phonetics or linguistics with precise combining mark encoding.
Custom glyphs in linguistics requiring the combining Latin small letter a.
Linguistic tools that must correctly index and display text containing ͣ.
Transliteration or annotation systems using ͣ to modify a base character.
💡 Best Practices
Do
- Use
ͣorͣin HTML (no named entity exists) - Place ͣ immediately after the base character for correct combining
- Serve pages as UTF-8 for combining character support
- Use fonts that support Combining Diacritical Marks (U+0300–U+036F)
- Distinguish ͣ (combining mark) from plain
a(U+0061)
Don’t
- Assume a named entity exists—there is none for ͣ
- Use plain
awhen a combining mark is required - Put CSS escape
\363in HTML text nodes - Assume all fonts render combining marks identically
- Separate the combining mark from its base character with spaces or tags
Key Takeaways
Three references render ͣ (no named entity)
ͣ ͣFor CSS stylesheets, use the escape in the content property
\363Unicode U+0363 — COMBINING LATIN SMALL LETTER A
Combining mark: place after base character (e.g. eͣ)
Previous: Lowercase A Inverted Breve (ȃ) Next: Lowercase A Latin Subscript
❓ Frequently Asked Questions
ͣ (hex), ͣ (decimal), or \363 in CSS content. There is no named HTML entity. This is a combining character and typically follows a base character.U+0363 (COMBINING LATIN SMALL LETTER A). Combining Diacritical Marks block. Hex 363, decimal 867. Used as a combining mark in linguistic and phonetic notation.a as a combining mark above or below another character. It appears in phonetic and scholarly notation systems.ͣ or ͣ) is used in HTML content. The CSS entity (\363) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ͣ but in different contexts.ͣ or ͣ in HTML, or \363 in CSS. This is standard for many combining characters in Unicode.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
