HTML Entity for Vertical Tilde (̾)

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

What You'll Learn

How to display the Vertical Tilde combining mark (̾) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+033E (COMBINING VERTICAL TILDE OVERLAY) in the Combining Diacritical Marks block—a non-spacing mark that overlays a preceding base character in linguistic and phonetic notation.

Render it with ̾, ̾, or CSS escape \033E. There is no named HTML entity. Always place the combining mark after its base letter (e.g. n̾). Do not confuse ̾ with the regular tilde ~ (U+007E) or combining tilde ̃ (U+0303).

⚡ Quick Reference — Vertical Tilde Entity

Unicode U+033E

Combining Diacritical Marks

Hex Code ̾

Hexadecimal reference

HTML Code ̾

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+033E
Hex code       ̾
HTML code      ̾
Named entity   (none)
CSS code       \033E
Type           Combining mark (non-spacing)
Usage          Place after base character: n̾
Not the same   U+007E = ~ (tilde)
               U+0303 = ̃ (combining tilde)
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing the Vertical Tilde (̾) with a base letter, using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "n\033E";
  }
 </style>
</head>
<body>
<p>With base (hex): n&#x033E;</p>
<p>With base (decimal): n&#830;</p>
<p id="point">With base (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Vertical Tilde combining mark (̾) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Vertical Tilde combining mark rendered live with base characters:

With base nn̾ (n + vertical tilde)
With base a
Large glyph
Not the same as~ (U+007E)  |  ̃ (U+0303, combining tilde)
Numeric refs&#x033E; &#830; \033E

🧠 How It Works

1

Hexadecimal Code

&#x033E; uses the Unicode hexadecimal value 033E. Place it after a base character: n&#x033E;.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\033E is used in CSS stylesheets, typically with a base letter in the content property (e.g. content: "n\033E").

CSS stylesheet
=

Combining mark result

All three methods overlay ̾ on the preceding base character. Unicode U+033E is a non-spacing combining mark—not the same as ~ (U+007E).

Use Cases

The Vertical Tilde combining mark (̾) is commonly used in:

📝 Linguistic notation

Combining mark with base characters in language documentation.

🔤 Phonetic transcriptions

IPA and phonetic research using diacritical marks.

📚 Academic papers

Scholarly linguistics and research content.

📄 Technical documentation

Unicode references and combining-character guides.

📐 Logic & formal notation

Formal systems referencing combining marks.

🖥 Programming content

Documentation for tools handling Unicode combining characters.

🌐 Internationalization

Multilingual content requiring correct diacritic ordering.

💡 Best Practices

Do

  • Place ̾ after its base character (e.g. n&#x033E;)
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Combining Diacritical Marks
  • Test rendering with your target base letters

Don’t

  • Confuse ̾ (U+033E) with ~ (U+007E) or ̃ (U+0303)
  • Use the mark alone without a base character in normal text
  • Place the combining mark before the base letter
  • Mix entity styles randomly in one file
  • Expect a named HTML entity—none exists for ̾

Key Takeaways

1

Place the mark after a base letter: n&#x033E;

&#x033E; &#830;
2

For CSS, include base + escape: content: "n\033E"

\033E
3

Unicode U+033E — COMBINING VERTICAL TILDE OVERLAY

4

Not the same as ~ (U+007E) or ̃ (combining tilde)

❓ Frequently Asked Questions

Use &#x033E; (hex), &#830; (decimal), or \033E in CSS content. Place the mark after its base character (e.g. n&#x033E;). There is no named HTML entity.
U+033E (COMBINING VERTICAL TILDE OVERLAY). Combining Diacritical Marks block. Hex 033E, decimal 830. Distinct from U+007E (~) and U+0303 (̃).
In linguistic notation, phonetic transcriptions, academic papers, technical documentation, and any content requiring this combining diacritical mark with a base character.
HTML entities (&#830; or &#x033E;) go in markup after a base letter. The CSS escape \033E is used in stylesheets, typically paired with a base character in content. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Combining diacritical marks like ̾ use numeric codes. Use &#830; or &#x033E; in HTML, or \033E in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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