HTML Entity for Up Arrow Below (a͎)

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

What You'll Learn

How to display the Up Arrow Below combining mark (͎) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+034E (COMBINING UP ARROWS BELOW) in the Combining Diacritical Marks Extended block (U+0340–U+04BF)—a non-spacing mark that places up arrows below the preceding base letter.

Render it with ͎, ͎, or CSS escape \034E placed after a base character (e.g. a͎). There is no named HTML entity. Do not confuse ͎ (combining mark below a letter) with ↑ (up arrow, U+2191, standalone arrow).

⚡ Quick Reference — Up Arrow Below

Unicode U+034E

Combining Diacritical Marks Extended

Hex Code ͎

Hexadecimal reference

HTML Code ͎

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+034E
Hex code       ͎
HTML code      ͎
Named entity   (none)
CSS code       \034E
Block          Combining Diacritical Marks Extended (U+0340–U+04BF)
Official name  COMBINING UP ARROWS BELOW
Usage          Place after base letter: a͎
Related        U+2191 = Up arrow (↑), U+2912 = Up arrow bar (⤒)
1

Complete HTML Example

A simple example showing the Up Arrow Below mark on the letter a using hex, decimal, and CSS content (the combining mark follows the base character):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\034E";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: a&#x034E;</p>
<p>Using HTML Code: a&#846;</p>
<p id="point">Using CSS Entity: a</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Combining marks render in modern browsers when fonts support Combining Diacritical Marks Extended and proper grapheme composition:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Up Arrow Below mark combined with base letters:

Vowels a͎ e͎ i͎ o͎ u͎
Large glyph
Compare combining: a͎   standalone: ↑
Numeric refs a&#x034E; a&#846; \034E

🧠 How It Works

1

Hexadecimal Code

&#x034E; uses the Unicode hexadecimal value 034E. Place it immediately after a base character, e.g. a&#x034E;.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\034E is used in CSS stylesheets in the content property of pseudo-elements, following base text in the element.

CSS stylesheet
=

Combined result

All three methods attach up arrows below the base letter: . Unicode U+034E is a combining character—it never displays meaningfully on its own.

Use Cases

The Up Arrow Below combining mark (͎) commonly appears in:

💬 Linguistic notation

Academic papers and research documents with phonetic or linguistic annotation.

📝 Phonetic transcription

IPA notation and linguistic analysis using combining marks below characters.

📄 Text annotation

Annotated texts, scholarly works, and specialized academic content.

🎓 Academic writing

Research documents requiring precise diacritical notation.

📐 Specialized typography

Font design and text formatting with combining marks below letters.

🗃️ Unicode docs

Character reference guides and encoding specifications.

💡 Best Practices

Do

  • Place &#x034E; or &#846; after the base letter
  • Use UTF-8 encoding in your HTML document
  • Choose fonts with good combining-mark support
  • Test composed glyphs across browsers and devices
  • Provide readable fallback text for accessibility

Don’t

  • Use ͎ alone without a base character
  • Confuse combining ͎ with standalone ↑ (&uarr;)
  • Use U+0034E or CSS \0034E—the correct value is U+034E and \034E
  • Put CSS escape \034E directly in HTML text nodes
  • Expect a named HTML entity for U+034E

Key Takeaways

1

Two HTML references attach up arrows below the base letter

a&#x034E; a&#846;
2

For CSS, use \034E in the content property after base text

3

Unicode U+034E — COMBINING UP ARROWS BELOW

4

Combining mark—always follows a base character

5

No named entity—use numeric references or CSS escape

❓ Frequently Asked Questions

Use &#x034E; (hex) or &#846; (decimal) immediately after a base letter, e.g. a&#x034E;. For CSS, use \034E in content on a pseudo-element. There is no named HTML entity.
U+034E (COMBINING UP ARROWS BELOW). Combining Diacritical Marks Extended block (U+0340–U+04BF). Hex 034E, decimal 846. Attaches up arrows below the preceding base character.
In linguistic notation, phonetic transcription, combining diacritical marks, text annotation, academic writing, specialized typography, and any content requiring marks below characters.
HTML numeric references go in markup after the base character. The CSS escape \034E goes in stylesheets, typically appended via ::after content. Both combine with a preceding base letter to produce a͎.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Combining diacritical marks like U+034E use numeric hex or decimal references—standard practice for the Combining Diacritical Marks Extended block.

Explore More HTML Entities!

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