HTML Entity for Vertical Tilde (̾)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+033E

What Is Vertical Tilde?

Combining vertical tilde (U+033E) is a combining mark in Combining Diacritical Marks. It does not stand alone like a normal letter — it stacks over the character that comes before it. Example: a + ̾ renders as a̾.

Remember
Character     combining vertical tilde (after a base)
Unicode       U+033E
Hex entity    ̾
Decimal       ̾
CSS escape    \033E
Named entity  (none)
Example       a̾ → a̾

Prefer ̾ or ̾ immediately after the base letter. Used in linguistic and phonetic notation. Do not confuse it with ASCII ~ or the math tilde ∼ (∼).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity̾HTML markup (after base letter)
Decimal entity̾HTML markup (after base letter)
CSS escape\033EStylesheet content string
Named entity—Not defined in HTML5
OrderBase, then markRequired

When to Use Which

SituationUse
Vertical tilde on a letter (a̾)a̾ or a̾
Tilde below a letterU+0330 after the base
Vertical line aboveU+030D after the base
Math / similarity tilde (∼)∼ (∼)
ASCII spacing tilde (~)~ (U+007E) — not combining
Generated text via ::before / ::aftercontent: "a\033E"

Live Preview

Combining vertical tilde after common bases (same code point, different letters).

Vowels + mark a̾   e̾   i̾   o̾   u̾
Large (a + mark) a̾
Placeholder ◌̾ (dotted circle + U+033E)
Compared a̾  |  a̰  |  a̍  |  ~  |  ∼
With entities Hex: a̾ | Decimal: a̾

Complete HTML Example

One page that attaches U+033E to the letter a with hex, decimal, CSS escape, and a typed combining sequence. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce a̾ (a + combining vertical tilde) in one document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Combining Vertical Tilde (U+033E)</title>
  <style>
    #point::after {
      content: "a\033E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: a&#x033E;</p>
  <p>Using HTML Code: a&#830;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: a̾</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write the base letter, then &#x033E; → a&#x033E; becomes a̾.

2. Decimal: same mark as 830 → a&#830;. Same result as hex.

3. CSS: put base + escape in one string: content: "a\033E". #point::after appends that sequence after the paragraph text.

4. Typed: in UTF-8 type a then the combining mark. Order must stay base first, mark second.

Pitfalls & Tips

Common mistakes when working with U+033E.

Order

Base letter first

Write a&#x033E;, never put U+033E before the letter you want to mark.

Named?

No named entity

HTML5 has no named entity for U+033E. Use &#x033E; or &#830; after a base.

vs ~

Not ASCII tilde

~ (U+007E) is a spacing character. U+033E must follow a base letter.

vs ∼

Not the math tilde

∼ (&sim; / &tilde;) is a spacing operator. Do not use it as a combining diacritic.

vs U+0330

Not tilde below

U+0330 is COMBINING TILDE BELOW — a horizontal tilde under the letter, not a vertical tilde.

Fonts

Combining support varies

Some fonts stack poorly. Prefer fonts with solid Combining Diacritical Marks coverage for linguistic text.

CSS vs HTML

Do not mix escapes

\033E belongs in CSS strings (with a base). &#x033E; / &#830; belong in HTML after a base.

Browser Support

Combining vertical tilde (U+033E) and its numeric entity forms (&#x033E;, &#830;, CSS \\033E) are supported in all mainstream browsers. Stacking quality depends on font support for combining marks.

✓ Universal support

Vertical Tilde (U+033E)

Encode with hex, decimal, or CSS escape after a base letter — same combining mark everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+033E Full support

Bottom line: Use &#x033E; or &#830; after a base letter. Use \\033E only inside CSS content strings with a base (e.g. "a\\033E").

Key Takeaways

  • Unicode: combining vertical tilde is U+033E (decimal 830).
  • HTML: base first, then &#x033E; or &#830; (e.g. a&#x033E;).
  • CSS: use "a\033E" (or another base) inside content.
  • Meaning: combining vertical tilde — not ~, not ∼ (&sim;), not U+0330 (below).

One line: U+033E → after a base letter as &#x033E; / &#830; / CSS \033E.

Frequently Asked Questions

Place &#x033E; (hex) or &#830; (decimal) immediately after a base letter — for example a&#x033E;. In CSS, use content: "a\033E". There is no named HTML entity for U+033E.
U+033E (COMBINING VERTICAL TILDE). Hex 033E, decimal 830. It belongs to Combining Diacritical Marks (U+0300–U+036F).
No. HTML5 does not define a named entity. Use numeric forms &#830; or &#x033E; after a base letter.
No. U+033E is a combining mark that attaches to a base letter. ~ is ASCII tilde (U+007E). ∼ is the tilde operator (&sim;, U+223C) — a spacing math symbol.
It is a combining mark, not a spacing character. It attaches to the preceding base. To show it alone in documentation, use a placeholder base such as ◌ (U+25CC) + U+033E.
HTML entities (&#830; or &#x033E;) go in markup after the base letter. The CSS escape \033E goes in stylesheet strings (usually content on ::before/::after), typically as "a\033E".

Did you know?

Combining vertical tilde is Unicode U+033E (decimal 830) — COMBINING VERTICAL TILDE in Combining Diacritical Marks. It is a combining mark — place it after a base letter (e.g. a&#x033E; → a̾). HTML5 has no named entity. Do not confuse with ASCII ~ (U+007E), math tilde &sim; (U+223C), or tilde below (U+0330).

Next: Very Much Greater Than

Learn the HTML entity for very much greater-than (U+22D9).

Continue tutorial →

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