HTML Entity for Double Vertical Line Above (̎)

What You'll Learn
How to display the Combining Double Vertical Line Above (̎) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+030E (COMBINING DOUBLE VERTICAL LINE ABOVE) in the Combining Diacritical Marks block (U+0300–U+036F)—a combining diacritic used in linguistic notation, phonetic transcription, and specialized typography.
There is no named HTML entity for U+030E. Use ̎, ̎, or \030E in CSS content. U+030E typically combines with the preceding character (e.g. a̎). For the spacing character ‖ use U+2016 (‖); for below use U+0348.
⚡ Quick Reference — Double Vertical Line Above
U+030ECombining Diacritical Marks
̎Hexadecimal reference
̎Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+030E
Hex code ̎
HTML code ̎
Named entity —
CSS code \030E
Related U+2016 = Spacing (|‖); U+0348 = BelowComplete HTML Example
This example demonstrates the Combining Double Vertical Line Above (̎) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\030E";
}
</style>
</head>
<body>
<p>Double Vertical Line Above using Hexadecimal: ̎</p>
<p>Double Vertical Line Above using HTML Code: ̎</p>
<p id="point">Double Vertical Line Above using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+030E is supported in modern browsers when rendered with a font that includes Combining Diacritical Marks:
👀 Live Preview
See the Combining Double Vertical Line Above (̎) in linguistic and phonetic contexts:
🧠 How It Works
Hexadecimal Code
̎ uses the Unicode hexadecimal value 030E to display the Combining Double Vertical Line Above.
Decimal HTML Code
̎ uses the decimal Unicode value 782 to display the same character.
CSS Entity
\030E is used in CSS stylesheets, particularly in the content property of ::before or ::after.
Same visual result
All three methods produce U+030E (̎). Combining Diacritical Marks block. Pairs with a base letter above it (e.g. a̎). Spacing: U+2016 (‖). Below: U+0348.
Use Cases
The Combining Double Vertical Line Above (̎) is commonly used in:
Phonetic and phonological features in linguistic texts and academic papers.
IPA-related notation and pronunciation guides with combining diacritics.
Notation where combining marks stack on base characters.
Specialized typesetting with double vertical line above as a combining mark above letters.
Dictionaries and language apps that need correct diacritical rendering.
Linguistics, phonetics, and language research documents with precise symbols.
💡 Best Practices
Do
- Use
̎or̎for U+030E - Use phonetic fonts (Charis SIL, Doulos SIL, Noto Sans) for combining marks
- Test combining behavior with base letters in target browsers
- Use UTF-8 (
<meta charset="utf-8">) on all pages - Use
\030Eonly inside CSScontent
Don’t
- Assume a named entity exists for U+030E—it does not
- Confuse U+030E (combining above) with U+2016 (spacing ‖)
- Use U+030E when you need U+0348 (below)
- Expect every font to render combining marks correctly
- Put CSS escape
\030Ein HTML text nodes - Forget that U+030E is a combining character—pair it with base letters
Key Takeaways
No named entity—use numeric references
̎ ̎For CSS stylesheets, use the escape in the content property
\030EUnicode U+030E COMBINING DOUBLE VERTICAL LINE ABOVE
Combining mark: pairs with preceding letter (e.g. a̎)
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
̎ (hex), ̎ (decimal), or \030E in CSS content. There is no named HTML entity. As a combining mark, place it with a base letter (e.g. a̎).U+030E (COMBINING DOUBLE VERTICAL LINE ABOVE). Combining Diacritical Marks block (U+0300–U+036F). Hex 030E, decimal 782.̎ or ̎, or the CSS escape \030E in stylesheets.̎ or ̎) go in markup. The CSS escape \030E is used in stylesheets, typically in the content property of pseudo-elements. Both render ̎.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, math operators, arrows, and more.
8 people found this page helpful
