HTML Entity for Zigzag Above (͛)

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

What You'll Learn

How to display the Zigzag Above combining mark (͛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+035B (COMBINING ZIGZAG ABOVE) in the Combining Diacritical Marks block—a non-spacing mark that renders above the preceding base character.

Render it with ͛, ͛, or CSS escape \035B. There is no named HTML entity. Always place the combining mark after its base letter (e.g. a͛). Do not confuse ͛ with unrelated zigzag symbols in other Unicode blocks.

⚡ Quick Reference — Zigzag Above

Unicode U+035B

Combining Diacritical Marks

Hex Code ͛

Hexadecimal reference

HTML Code ͛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+035B
Hex code       ͛
HTML code      ͛
Named entity   (none)
CSS code       \035B
Meaning        COMBINING ZIGZAG ABOVE (non-spacing mark)
Related        U+033E = ̾ (combining vertical tilde)
               U+030D = ̍ (combining vertical line above)
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing Zigzag Above (͛) with a base letter, using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <style>
  #point:after{
   content: "a\035B";
  }
 </style>
</head>
<body>
<p>With base (hex): a&#x035B;</p>
<p>With base (decimal): a&#859;</p>
<p id="point">With base (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+035B 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 Zigzag Above combining mark rendered with base characters:

With base aa͛ (a + zigzag above)
With base o
Large glyph
Mark alone͛ (combining—needs a base in normal text)
Numeric refs&#x035B; &#859; \035B

🧠 How It Works

1

Hexadecimal Code

&#x035B; uses the Unicode hexadecimal value 035B. Place it after a base character: a&#x035B;.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combining mark result

All three methods overlay ͛ on the preceding base character. Unicode U+035B is COMBINING ZIGZAG ABOVE—a non-spacing diacritical mark.

Use Cases

The Zigzag Above combining mark (͛) is commonly used in:

🔤 Phonetic notation

Prosodic or phonetic features in pronunciation guides.

📝 Linguistic content

Academic or educational material on diacritics and combining characters.

✨ Decorative typography

Creative text with a zigzag accent above letters or symbols.

🎓 Academic papers

Phonetics, morphology, and Unicode research publications.

💻 Character demos

Documentation or reference pages showing combining marks.

📚 Unicode tutorials

Teaching combining-character ordering and rendering.

💡 Best Practices

Do

  • Place ͛ after its base character (e.g. a&#x035B;)
  • Use fonts that support Combining Diacritical Marks (Noto Sans, system Unicode fonts)
  • Pick one numeric style (hex or decimal) per project for consistency
  • Add title or aria-label when the symbol stands alone in UI
  • Save HTML with UTF-8 encoding (<meta charset="utf-8">)

Don’t

  • Place the combining mark before the base letter
  • Use the mark alone in normal body text without a base character
  • Put CSS escape \035B in HTML text nodes
  • Assume every font renders combining marks clearly without testing
  • Expect a named HTML entity for U+035B—use numeric references instead

Key Takeaways

1

Place the mark after a base letter: a&#x035B;

&#x035B; &#859;
2

For CSS, include base + escape: content: "a\035B"

\035B
3

Unicode U+035B — COMBINING ZIGZAG ABOVE

4

Non-spacing mark in the Combining Diacritical Marks block

❓ Frequently Asked Questions

Use &#x035B; (hex), &#859; (decimal), or \035B in CSS content. Place the mark after its base character (e.g. a&#x035B;). There is no named HTML entity.
U+035B (COMBINING ZIGZAG ABOVE). Combining Diacritical Marks block. Hex 035B, decimal 859. A combining character that appears above the preceding base letter.
In phonetic notation, linguistic content, decorative typography, character reference pages, and any web content that needs this combining diacritical mark above a base character.
HTML numeric references (&#859; or &#x035B;) go in markup after a base letter. The CSS escape \035B 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 &#859; or &#x035B; in HTML, or \035B in CSS.

Explore More HTML Entities!

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