HTML Entity for Left Right Arrow Below (͍)

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

What You'll Learn

How to display the Left Right Arrow Below (͍) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+034D (COMBINING LEFT RIGHT ARROW BELOW) in the Combining Diacritical Marks block (U+0300–U+036F)—a combining mark that places a left-right arrow below a base character in phonetic and linguistic notation.

Render it with ͍, ͍, or CSS \34D after a base character (e.g. x͍). There is no named HTML entity. Related: U+2194 (↔, left right arrow / ↔), U+034E (͎, combining up tack below).

⚡ Quick Reference — Left Right Arrow Below

Unicode U+034D

Combining Diacritical Marks

Hex Code ͍

Hexadecimal reference

HTML Code ͍

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+034D
Hex code       ͍
HTML code      ͍
Named entity   (none)
CSS code       \34D
Meaning        Combining left right arrow below
Related        U+2194 = left right arrow (↔)
               U+034E = combining up tack below (͎)
1

Complete HTML Example

A simple example showing the Left Right Arrow Below (͍) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\34D";
  }
 </style>
</head>
<body>
<p>Combining mark (hex): x&#x034D;</p>
<p>Combining mark (decimal): x&#845;</p>
<p id="point">Combining mark (CSS): x</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Right Arrow Below (͍) renders in modern browsers when the font supports Combining Diacritical Marks glyphs:

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

👀 Live Preview

See the Left Right Arrow Below (͍) as a combining mark with base characters:

With base letter
Phonetic notation a͍ → arrow below a
Linguistic symbol ɑ͍
Isolated glyph ͍
Mark comparison x͍ x͎ ↔
Numeric refs &#x034D; &#845; \34D

🧠 How It Works

1

Hexadecimal Code

&#x034D; uses the Unicode hexadecimal value 34D for the combining left right arrow below. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#845; uses the decimal Unicode value 845 to display the same combining mark.

HTML markup
3

CSS Entity

\34D is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce ͍. Unicode U+034D is in Combining Diacritical Marks. Previous: Left Right Arrow.

Use Cases

The Left Right Arrow Below (͍) is commonly used in:

💬 Phonetics

Place a bidirectional arrow below letters in phonetic transcription.

📜 Linguistics

Specialized linguistic symbols with combining diacritical marks.

📐 Notation

Mathematical or diagrammatic marks below base characters.

📚 Technical docs

Document combining mark usage in symbol reference pages.

🗃 Entity reference

Teach numeric entity usage for combining diacritical marks.

🎯 Accessibility

Pair combining marks with meaningful base characters for screen readers.

💡 Best Practices

Do

  • Place ͍ immediately after a base character (e.g. x&#x034D;)
  • Use &#845; or &#x034D; in HTML—no named entity exists
  • Set <meta charset="utf-8">
  • Use fonts that support Combining Diacritical Marks (U+034D)
  • Keep one numeric style (hex or decimal) per project

Don’t

  • Expect a named HTML entity for U+034D
  • Use CSS \34D inside HTML text nodes
  • Confuse ͍ (combining mark) with ↔ (standalone left right arrow)
  • Use the mark alone without a base character when meaning depends on context
  • Assume all fonts render combining marks identically

Key Takeaways

1

Two HTML numeric references plus CSS for U+034D

&#x034D; &#845;
2

For CSS, use \34D in the content property

3

Unicode U+034D — COMBINING LEFT RIGHT ARROW BELOW

4

Combining Diacritical Marks block (U+0300–U+036F) — no named entity

❓ Frequently Asked Questions

Use &#x034D; (hex), &#845; (decimal), or \34D in CSS content. There is no named entity. All three methods render ͍ correctly.
U+034D (COMBINING LEFT RIGHT ARROW BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 34D, decimal 845. A combining character that appears below a base character.
In phonetic notation, linguistic symbols, and specialized notation where a left-right arrow below a letter or symbol is required. It can also be used in mathematical or diagrammatic content as a combining mark.
HTML references (&#845; or &#x034D;) go in markup. The CSS escape \34D is used in stylesheets, typically on ::before or ::after. Both produce ͍.
No. There is no named HTML entity for U+034D. You must use numeric codes: hexadecimal (&#x034D;) or decimal (&#845;) in HTML, or \34D in CSS content.

Explore More HTML Entities!

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