HTML Entity for All Equal To (≌)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+224C

What Is the All Equal To Entity?

All Equal To (≌) is the Mathematical Operators character at Unicode U+224C. Unicode’s official name is All equal to. HTML also exposes it as the named entity ≌ (“backward congruent”). You can paste ≌ in UTF-8 HTML, use ≌, or write a numeric character reference.

Remember
Character     ≌
Unicode       U+224C
Hex entity    ≌
Decimal       ≌
Named entity  ≌
CSS escape    \224C

All of these produce the same glyph: ≌. Prefer ≌ in hand-written HTML. Match the symbol to your math style guide — do not assume it means the same thing as ≈ or ≡.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character≌HTML text (UTF-8)
Named entity≌HTML markup (most readable)
Hex entity≌HTML markup
Decimal entity≌HTML markup
CSS escape\224CStylesheet content

When to Use Which

SituationUse
Hand-written math HTML for U+224C≌ or paste ≌
Need a numeric reference≌ or ≌
Generated text via ::before / ::aftercontent: "\224C"
Approximate equalityOften ≈ (almost equal to) — not U+224C
Identity / equivalenceOften ≡ (identical to) — check your guide

Live Preview

All Equal To rendered in common math contexts.

Inline text Relation example: A ≌ B in the chosen notation.
Large glyph ≌
Named entity ≌ → ≌
Monospace REL=≌ (U+224C)
With entities Hex: ≌ | Decimal: ≌ | Named: ≌

Complete HTML Example

One page that shows ≌ with hex, decimal, named entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + Named + CSS + Typed

Five ways to produce ≌ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>All Equal To (≌) in HTML</title>
  <style>
    #point::after {
      content: "\224C";
    }
  </style>
</head>
<body>
  <p>All Equal To using Hex Code: &#x224C;</p>
  <p>All Equal To using HTML Code: &#8780;</p>
  <p>All Equal To using Named Entity: &bcong;</p>
  <p id="point">All Equal To using CSS Entity: </p>
  <p>Typed directly: ≌</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+224C → &#x224C; in HTML. The browser turns it into ≌.

2. Decimal: same code point as 8780 → &#8780;. Same result as hex.

3. Named: &bcong; is the standard HTML name for U+224C — clear in source.

4. CSS: use \224C in content (not an HTML entity). #point::after appends that ≌ after the paragraph text.

5. Typed ≌: fine in UTF-8 source. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with the All Equal To entity.

Meaning

Follow your style guide

≌ is not automatically the same as ≈ or ≡. Use the code point your course or paper requires.

Named

Prefer &bcong;

In hand-written HTML, the named entity is easier to read than &#8780;.

CSS vs HTML

Do not mix escapes

\224C belongs in CSS. &bcong; / &#x224C; / &#8780; belong in HTML.

Label

Two names, one glyph

Unicode says All equal to; HTML entity lists say bcong. Same U+224C.

Fonts

Check math coverage

Some webfonts omit Mathematical Operators. Test fonts used for equations.

Semicolon

End references

Always finish with ; — write &bcong;, not &bcong.

Browser Support

All Equal To (U+224C) and its entity forms (&#x224C;, &#8780;, &bcong;, CSS \\224C) are supported in all mainstream browsers. Glyph appearance depends on font coverage for the Mathematical Operators block.

✓ Universal support

All Equal To (&#x224C;)

Paste ≌, or encode with named, hex, decimal, or CSS escape — same glyph everywhere.

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+224C / entities Full support

Bottom line: Prefer &bcong; in hand-written HTML. Use &#x224C; or &#8780; when a numeric form is clearer, and \\224C only inside CSS content.

Key Takeaways

  • Unicode: All Equal To is U+224C (decimal 8780).
  • HTML: prefer &bcong;, or use &#x224C; / &#8780;.
  • CSS: use \224C inside content for generated text.
  • Relations: ≌ ≠ ≈ ≠ ≡ — pick the operator your notation requires.

One line: U+224C → &bcong; / &#x224C; / &#8780; / CSS \224C.

Frequently Asked Questions

Use &#x224C; (hex), &#8780; (decimal), &bcong; (named), or the CSS escape \224C in the content property. All render All Equal To (≌). You can also paste ≌ directly if your file is UTF-8.
U+224C (hex 224C, decimal 8780). Unicode names it All equal to. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. &bcong; maps to U+224C. Prefer it in hand-written HTML; numeric forms are useful in generated markup or XML contexts.
Use U+224C when your textbook or style guide calls for All equal to / &bcong;. Approximate equality is often ≈ (U+2248); identical to is ≡ (U+2261). Do not swap them casually.
HTML entities (&#8780;, &#x224C;, or &bcong;) go in markup. The CSS escape \224C is used in stylesheets (usually in the content property of ::before/::after). Both render ≌.
HTML’s entity list uses the mnemonic “backward congruent” for U+224C. Unicode’s character name is All equal to. Same code point — two labels.

Did you know?

All Equal To is Unicode U+224C (decimal 8780) in the Mathematical Operators block. HTML provides the named entity &bcong; (“backward congruent”). Confirm meaning with your math style guide — ≈, ≅, and ≡ are different symbols.

Next: Almost Equal Or Equal To

Learn the HTML entity for almost equal or equal to (≊) — another Mathematical Operators relation.

Almost Equal Or Equal 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