HTML Entity for Triple Tilde (≋)

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

What You'll Learn

How to display the Triple Tilde (≋) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+224B (TRIPLE TILDE) in the Mathematical Operators block (U+2200–U+22FF)—a specialized logic and mathematical relation symbol.

Render it with ≋, ≋, ≋, or CSS escape \224B. Do not confuse ≋ with U+223C (∼, tilde operator / ∼), U+226C (≬, between), or U+2034 (‴, triple prime).

⚡ Quick Reference — Triple Tilde

Unicode U+224B

Mathematical Operators block

Hex Code ≋

Hexadecimal reference

HTML Code ≋

Decimal reference

Named Entity ≋

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+224B
Hex code       ≋
HTML code      ≋
Named entity   ≋
CSS code       \224B
Block          Mathematical Operators (U+2200–U+22FF)
Official name  TRIPLE TILDE
Related        U+223C = tilde operator (∼), U+226C = between (≬)
1

Complete HTML Example

This example demonstrates the Triple Tilde (≋) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\224B";
  }
 </style>
</head>
<body>
<p>Using Named Entity: &apid;</p>
<p>Using Hexadecimal: &#x224B;</p>
<p>Using HTML Code: &#8779;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+224B is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

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

👀 Live Preview

See the Triple Tilde (≋) in logic and mathematical notation:

Logic Relation symbol: A ≋ B
Large glyph
vs other tildes ∼ &sim; tilde   ≋ &apid; triple   ≬ between
Named entity &apid; → ≋
Monospace refs &apid; &#x224B; &#8779; \224B

🧠 How It Works

1

Named Entity

&apid; is the HTML named entity for the Triple Tilde (≋) — the most readable option in source code.

HTML markup
2

Hexadecimal Code

&#x224B; uses the Unicode hexadecimal value 224B to display the Triple Tilde symbol.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\224B is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+224B. Not tilde operator ∼ or triple prime ‴. Previous: Triple Prime. Next: Triple Vertical Bar Right Turnstile.

Use Cases

The Triple Tilde (≋) commonly appears in:

⚙ Logic

Formal logic expressions and relation notation.

📐 Mathematics

Specialized mathematical documents and proofs.

📚 Academic

Research papers and scholarly publications.

📝 Technical docs

Formal systems and specialized notation guides.

🎓 Education

Logic and math tutorials in HTML.

🔤 Reference

Unicode and HTML entity guides for math operators.

💡 Best Practices

Do

  • Prefer &apid; for readable HTML source
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • For complex equations, consider MathML, MathJax, or KaTeX
  • Distinguish ≋ from tilde operator ∼ and between ≬
  • Pick one entity style per project for consistency

Don’t

  • Confuse ≋ (triple tilde) with ∼ (tilde operator)
  • Confuse ≋ with ‴ (triple prime punctuation)
  • Use three tildes (~~~) when ≋ is intended
  • Put CSS escape \224B directly in HTML text nodes
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Four ways to render ≋ in HTML

&#x224B; &#8779; &apid;
2

For CSS stylesheets, use the escape in the content property

\224B
3

Unicode U+224B — Triple Tilde

4

Prefer &apid; for readability in HTML source

5

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

❓ Frequently Asked Questions

Use &apid; (named), &#x224B; (hex), &#8779; (decimal), or \224B in CSS content. All produce ≋.
U+224B (TRIPLE TILDE). Mathematical Operators block (U+2200–U+22FF). Hex 224B, decimal 8779. A specialized logic and mathematical relation symbol.
For logic expressions, mathematical notation, formal proofs, academic content, and specialized relation symbols in HTML documents.
The named entity &apid; is the most readable option when writing HTML by hand. Numeric codes (&#8779; or &#x224B;) are equally valid. All render ≋.
Yes. &apid; is part of the HTML standard and is widely supported across modern browsers. It is the preferred method for displaying ≋ in HTML documents.

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