HTML Entity for Equals Sign Below ( ͇)

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

What You'll Learn

How to display the Equals Sign Below combining mark in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0347 (COMBINING EQUALS SIGN BELOW) in the Combining Diacritical Marks block (U+0300–U+036F)—it attaches below the preceding base character (e.g. a͇).

Render it with ͇, ͇, or CSS escape \347. There is no named HTML entity. Place the code immediately after the base letter or symbol it modifies. Do not confuse it with a spacing equals sign (=).

⚡ Quick Reference — Equals Sign Below

Unicode U+0347

Combining Diacritical Marks

Hex Code ͇

Hexadecimal reference

HTML Code ͇

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0347
Hex code       ͇
HTML code      ͇
Named entity   (none)
CSS code       \347
Type           Combining mark (non-spacing)
Placement      Immediately after base character
Related        U+003D = Equals (=); U+0300–U+036F = Combining marks
1

Complete HTML Example

This example demonstrates the Equals Sign Below (͇) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\347";
  }
 </style>
</head>
<body>
<p>Equals Sign Below using Hexadecimal: &#x0347;</p>
<p>Equals Sign Below using HTML Code: &#839;</p>
<p id="point">Equals Sign Below using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equals Sign Below entity is universally supported in modern browsers:

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

👀 Live Preview

See the combining equals sign below on base letters and compared with ordinary equals (=):

With base a
With base x x͇ (decimal &#839;)
Large sample
vs ordinary = a͇  ·  2 + 2 = 4
Numeric refs &#x0347; &#839;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x0347; uses the Unicode hexadecimal value 0347. This is a combining character—it attaches below the preceding base character.

HTML markup
2

Decimal HTML Code

&#839; uses the decimal Unicode value 839 to display the same character.

HTML markup
3

CSS Entity

\347 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods attach the mark below the base (e.g. ). Unicode U+0347 in the Combining Diacritical Marks block (U+0300–U+036F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Equals Sign Below (U+0347) commonly appears in:

📝 Phonetics

IPA and phonetic transcription with specialized diacritics.

🎓 Education

Typography and linguistics courses covering combining marks.

📐 Typography

Specialized fonts and markup for diacritic-heavy text.

💻 Accessibility

Ensure combining sequences render correctly across browsers.

📰 Research

Academic HTML with correct Unicode combining sequences.

🌐 Symbol guides

Math operator and Unicode reference pages.

💡 Best Practices

Do

  • Place &#x0347; or &#839; immediately after the base character
  • Use = for a standalone equals sign, not U+0347 alone
  • Use fonts with good Combining Diacritical Marks coverage
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Test rendering: a͇ should show equals below a

Don’t

  • Use U+0347 without a preceding base character
  • Expect a named entity—none exists for U+0347
  • Put CSS escape \347 in HTML text nodes
  • Confuse this combining mark with standalone =
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references attach the mark (e.g. a͇)

&#x0347; &#839;
2

For CSS stylesheets, use the escape in the content property

\347
3

Unicode U+0347 — COMBINING EQUALS SIGN BELOW

4

Combining mark—always follows a base character

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x0347; (hex) or &#839; (decimal) right after the base character, or \347 in CSS content. There is no named entity.
U+0347 (COMBINING EQUALS SIGN BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0347, decimal 839. Used in phonetic notation and specialized typography.
When you need a combining equals sign below a letter in phonetic notation, specialized typography, or similar markup that requires U+0347.
Named entities cover a subset of common characters. U+0347 has no named entity—use &#x0347; or &#839; in markup, or \347 in CSS.
HTML references (&#839; or &#x0347;) go in markup. The CSS escape \347 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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