HTML Entity for Reverse Tilde Equals (⋍)

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

What You'll Learn

How to display the Reverse Tilde Equals symbol (⋍) in HTML using numeric references, the named entity, and CSS escapes. This character is U+22CD (REVERSE TILDE EQUALS) in the Mathematical Operators block (U+2200–U+22FF)—used in mathematical notation, logic symbols, and formal academic writing.

You can use the named entity ⋍, hex ⋍, decimal ⋍, or CSS \22CD. Do not confuse ⋍ with U+2243 (≃, asymptotically equal, ≃) or U+2248 (≈, almost equal, ≈).

⚡ Quick Reference — Reverse Tilde Equals

Unicode U+22CD

Mathematical Operators (U+2200–U+22FF)

Hex Code ⋍

Hexadecimal reference

HTML Code ⋍

Decimal reference

Named Entity ⋍

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22CD
Hex code       ⋍
HTML code      ⋍
Named entity   ⋍
CSS code       \22CD
Meaning        Reverse tilde over equals sign
Related        U+2243 = asymptotically equal (≃, ≃)
               U+2248 = almost equal (≈, ≈)
               U+2236 = ratio (∶, ∶)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⋍ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22CD";
  }
 </style>
</head>
<body>
<p>Reverse tilde equals (hex): &#x22CD;</p>
<p>Reverse tilde equals (decimal): &#8909;</p>
<p>Reverse tilde equals (named): &bsime;</p>
<p id="point">Reverse tilde equals (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22CD is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Reverse Tilde Equals symbol (⋍) in mathematical contexts:

Single symbol
Logic notation A ⋍ B — reverse tilde equals relation
Compare relations ≃ asymptotic   ⋍ reverse tilde   ≈ almost equal
Named entity &bsime;
Numeric refs &#x22CD; &#8909; \22CD

🧠 How It Works

1

Hexadecimal Code

&#x22CD; uses Unicode hex 22CD to display the reverse tilde equals symbol.

HTML markup
2

Decimal HTML Code

&#8909; is the decimal equivalent (8909) for the same character.

HTML markup
3

Named HTML Entity

&bsime; is the standard named entity for U+22CD—readable in HTML source.

HTML markup
4

CSS Entity

\22CD is the CSS escape for U+22CD, used in pseudo-element content.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+22CD in Mathematical Operators. Next: Reverse Triple Prime.

Use Cases

The Reverse Tilde Equals symbol (⋍) is commonly used in:

🔢 Mathematics

Formal expressions and proofs involving reverse tilde relations.

📝 Logic symbols

Logical statements, formal logic systems, and equivalence notation.

📖 Academic writing

Research papers, mathematical journals, and scholarly publications.

💬 Technical docs

Computer science specifications, algorithm descriptions, and formal specs.

📋 Unicode references

Character pickers, entity documentation, and math symbol guides.

♿ Accessibility

Pair ⋍ with descriptive text or MathML when used as a meaningful symbol.

💡 Best Practices

Do

  • Use &bsime; for readable reverse tilde equals markup
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish ⋍ from ≃ (asymptotically equal) and ≈ (almost equal)
  • Use serif or math-friendly fonts for academic and technical documents
  • Pick one reference style per project for consistency

Don’t

  • Confuse ⋍ with ≃ (asymptotically equal) or ≈ (almost equal)
  • Use padded Unicode notation like U+022CD—the correct value is U+22CD
  • Use CSS escape \22CD in HTML text nodes
  • Substitute a plain tilde and equals (~=) when ⋍ is required formally
  • Assume every font renders Mathematical Operators identically

Key Takeaways

1

Four ways to render U+22CD in HTML and CSS

&bsime; &#8909;
2

For CSS stylesheets, use \22CD in the content property

3

Unicode U+22CD — REVERSE TILDE EQUALS (⋍)

4

Distinct from asymptotically equal ≃ and almost equal ≈

❓ Frequently Asked Questions

Use &bsime; (named entity), &#x22CD; (hex), &#8909; (decimal), or \22CD in CSS content. All four render ⋍.
U+22CD (REVERSE TILDE EQUALS). Mathematical Operators block (U+2200–U+22FF). Hex 22CD, decimal 8909.
No. ⋍ (U+22CD) is reverse tilde equals. ≃ (U+2243, &sime;) is asymptotically equal to. They are different Unicode characters.
For mathematical notation, logic symbols, academic documentation, technical writing, and formal logic involving reverse tilde relationships.
&bsime; is the standard named entity for U+22CD and is the most readable option in HTML source.

Explore More HTML Entities!

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