HTML Entity for Lowercase V Latin (ͮ)

What You'll Learn
How to display the combining Latin small letter v (ͮ) in HTML using hexadecimal, decimal, and CSS escape methods. This character (U+036E) is a nonspacing combining mark from the Combining Diacritical Marks block. It appears as a small superscript “v” above a base character—for example, nͮ shows a small v above the letter n.
Render it with ͮ, ͮ, or CSS escape \036E. There is no named HTML entity. As a combining character, it must follow a base character for correct rendering. Do not confuse with plain v (U+0076).
⚡ Quick Reference — Lowercase V Latin Entity
U+036ECombining Diacritical Marks
ͮHexadecimal reference
ͮDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+036E
Hex code ͮ
HTML code ͮ
Named entity (none)
CSS code \036E
Meaning Combining Latin small letter v
Type Combining mark (nonspacing, Mn)
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the combining Latin small letter v (ͮ) 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: "\036E";
}
</style>
</head>
<body>
<p>Symbol (hex): ͮ</p>
<p>Symbol (decimal): ͮ</p>
<p id="point">Symbol (CSS): </p>
<p>Combining: nͮ</p>
</body>
</html>🌐 Browser Support
The combining Latin small letter v (ͮ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the combining Latin small letter v (ͮ) and how it combines with a base character:
🧠 How It Works
Hexadecimal Code
ͮ uses the Unicode hexadecimal value 036E to display the character. Place it immediately after a base character so it renders above it.
Decimal HTML Code
ͮ uses the decimal Unicode value 878 to display the same character. A common method for combining characters.
CSS Entity
\036E 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+036E is a nonspacing combining character (Mn) in the Combining Diacritical Marks block. Place it immediately after a base letter (e.g. nͮ) so it combines correctly. There is no named HTML entity.
Use Cases
The combining Latin small letter v (ͮ) is commonly used in:
Superscript or abbreviated letter “v” in medieval Latin script and palaeographic transcriptions.
Phonetic or phonological notation where a small v is placed above a base letter.
Academic papers, critical editions, and language documentation using combining characters.
Font specimens showcasing Combining Diacritical Marks (U+0300–U+036F) support.
Unicode normalization (NFC/NFD) and text processing of combining sequences.
Testing support of combining characters and correct rendering order.
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
v(U+0076)
Don’t
- Assume a named entity exists—there is none for ͮ
- Use plain
vwhen a combining mark is required - Use the old incorrect CSS escape
\0036E—the correct value is\036E - Put CSS escape
\036Ein HTML text nodes - 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
\036EUnicode U+036E — COMBINING LATIN SMALL LETTER V
Combining mark: place after base character (e.g. nͮ)
Previous: Lowercase V Hook (ʋ) Next: Lowercase V Reverse (ʌ)
❓ Frequently Asked Questions
ͮ (hex), ͮ (decimal), or \036E in CSS content. There is no named HTML entity. Place it after a base character (e.g. nͮ) for correct positioning.U+036E (COMBINING LATIN SMALL LETTER V). Combining Diacritical Marks block. Hex 036E, decimal 878.nͮ) for correct display.ͮ or ͮ in HTML, or \036E in CSS. Do not confuse with plain v (U+0076).Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
