HTML Entity for Equals Sign Below (a͇)

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

What Is Equals Sign Below?

Equals sign below is the Unicode character at U+0347 in the Combining Diacritical Marks block. Official name: COMBINING EQUALS SIGN BELOW. It is a combining mark that attaches to the previous base letter — for example a͇ → a͇.

Remember
Mark          (combining ͇)
Unicode       U+0347
Hex entity    ͇
Decimal       ͇
CSS escape    \0347
Named entity  (none)
Tip           base letter + mark

Prefer ͇ or ͇ after a base letter (no named form). Do not confuse it with spacing = (U+003D).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity͇After a base letter in HTML (preferred)
Decimal entity͇After a base letter in HTML
Direct characterLetter + ͇HTML text (UTF-8)
CSS escape\0347Stylesheet content (after a letter)
Spacing equals (related)= / = (U+003D)Standalone equals — not combining

When to Use Which

SituationUse
Equals mark under a letterBase + ͇ — e.g. a͇
Ordinary math equalityEqual to (=)
Macron belowMacron below — e.g. a̱
Diaeresis belowDiaeresis below — e.g. a̤
Generated text via ::before / ::aftercontent: "a\0347"

Live Preview

Combining equals sign below on base letters and compared with related marks.

Example a͇   o͇   u͇
Large glyph a͇
Compared a͇   a̱   a̤   =
With entities Hex: a͇ | Decimal: a͇

Complete HTML Example

One page that shows Equals Sign Below with hex, decimal, CSS escape, and a typed combining form. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to place ͇ after a base letter.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Equals Sign Below (U+0347) in HTML</title>
  <style>
    #point::after {
      content: "a\0347";
    }
  </style>
</head>
<body>
  <p>Built with Hex: a&#x0347;</p>
  <p>Built with Decimal: a&#839;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: a͇   o͇</p>
  <p>Order: base letter, then U+0347</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write a base letter, then &#x0347; → a͇.

2. Decimal: same code point as 839 → &#839; after the letter. Same result as hex.

3. CSS: put the letter and \0347 together in content (e.g. "a\0347"). A lone combining escape has nothing to attach to.

4. Typed / order: paste the combining mark after the base letter in a UTF-8 document.

Pitfalls & Tips

Common mistakes when working with Equals Sign Below.

Order

Base letter first

Write the letter, then &#x0347;. Alone, the combining mark has nothing to attach to and may look invisible or misplaced.

Name

No named entity

There is no HTML5 named entity for U+0347. Use &#x0347; or &#839;.

=

Not ordinary equals

U+003D is a spacing equals sign for equations. U+0347 is a diacritic under a letter.

CSS vs HTML

Do not mix escapes

\0347 belongs in CSS strings (with a letter). &#x0347; / &#839; belong in HTML after a base letter.

Fonts

Combining mark coverage

Some fonts draw rare combining marks poorly. Prefer a font with solid Combining Diacritical Marks support.

a11y

Add accessible text

Screen readers may ignore or misread rare combining marks. Prefer a short explanation nearby when the diacritic carries meaning.

Semicolon

End references

Always finish entities with ; — write &#x0347;, not &#x0347.

Browser Support

Combining equals sign below (U+0347) and its entity forms (&#x0347;, &#839;, CSS \\0347) are supported in all mainstream browsers. Visible glyphs depend on Combining Diacritical Marks font coverage.

✓ Universal support

Equals Sign Below (a&#x0347;)

Encode with hex, decimal, CSS escape, or type the combining mark after a base letter — same code point 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+0347 Full support

Bottom line: Prefer &#x0347; after a base letter in HTML (no named form). Use &#839; when decimal form is required, and \\0347 only inside CSS content.

Key Takeaways

  • Unicode: combining equals sign below is U+0347 (decimal 839).
  • HTML: no named entity — use base + &#x0347; / &#839;.
  • CSS: use a letter with \0347 inside content.
  • Meaning: combining below — not spacing =.

One line: U+0347 → base + &#x0347; / CSS "a\0347" (no named form).

Frequently Asked Questions

Place &#x0347; (hex) or &#839; (decimal) after a base letter, type the combining mark in UTF-8 after a letter, or use CSS \0347 in content after a letter in the string. There is no named HTML entity for U+0347.
U+0347 (COMBINING EQUALS SIGN BELOW). Hex 0347, decimal 839. It belongs to the Combining Diacritical Marks block (U+0300–U+036F).
No. Use numeric forms &#839; or &#x0347; after a base letter. The spacing equals sign = uses = or &equals; (U+003D) — a different character.
Use it when a linguistic or phonetic notation needs an equals mark under a letter. Prefer ordinary = for math equality, and other below diacritics (for example macron below) when that mark is the one you need.
HTML entities (&#839; or &#x0347;) go in markup after a base letter. The CSS escape \0347 goes in stylesheet strings (usually content on ::before/::after, after a letter in the string).
No. U+0347 is a combining equals below a letter. U+003D is the spacing equals sign. A low line (_) is a separate spacing character, not this combining mark.

Did you know?

Equals sign below is Unicode U+0347 (decimal 839) — a combining mark (COMBINING EQUALS SIGN BELOW) in the Combining Diacritical Marks block. There is no HTML5 named entity; use &#x0347; or &#839; after a base letter (e.g. a&#x0347; → a͇). Do not confuse it with the spacing equals sign = (U+003D).

Next: Equiangular To

Learn the HTML entity for equiangular to (U+225A).

Equiangular To 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