HTML Entity for Homothetic (∻)

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

What You'll Learn

How to display the Homothetic (∻) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+223B (HOMOTHETIC) in the Mathematical Operators block (U+2200–U+22FF).

Render it with ∻, ∻, ∻, or CSS escape \223B. This glyph denotes homothety in geometry—a scaling transformation from a center point. It has a named HTML entity (∻) for readable markup.

⚡ Quick Reference — Homothetic

Unicode U+223B

Mathematical Operators

Hex Code ∻

Hexadecimal reference

HTML Code ∻

Decimal reference

Named Entity ∻

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+223B
Hex code       ∻
HTML code      ∻
Named entity   ∻
CSS code       \223B
Meaning        Homothety (scaling transformation)
CSS note       \223B or \0223B in content property
1

Complete HTML Example

This example demonstrates the Homothetic symbol (∻) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\223B";
  }
 </style>
</head>
<body>
<p>Homothetic using Hexadecimal: &#x223B;</p>
<p>Homothetic using Decimal: &#8763;</p>
<p>Homothetic using Named Entity: &homtht;</p>
<p id="point">Homothetic using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Homothetic symbol (∻) is supported in modern browsers with a math-capable font:

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

👀 Live Preview

See the Homothetic symbol (∻) in geometry and transformation notation:

Large glyph
Named entity &homtht; renders as ∻
Relation F ∻ G   Δ ∻ Δ′
In context homothety center O, scale k
Numeric refs &#x223B; &#8763; &homtht; \223B

🧠 How It Works

1

Hexadecimal Code

&#x223B; uses the Unicode hexadecimal value 223B to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&homtht; is the semantic named entity for ∻—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+223B is in Mathematical Operators. Next: Homothetic Above.

Use Cases

The Homothetic symbol (∻) is commonly used in:

📐 Geometry

Denote homothety (scaling from a center) in figures and proofs.

📚 Education

Geometry textbooks, course notes, and tutorials on transformations.

🔢 Notation

Express homothetic relations between shapes or sets in equations.

🔬 Scientific papers

Geometry, topology, and applied mathematics publications on the web.

💻 Documentation

CAD, graphics, or geometry APIs that use homothety operations.

📝 Formulas

Web-based equation editors and transformation formula display.

💡 Best Practices

Do

  • Use &homtht; for readable source markup
  • Use math fonts (Cambria Math, STIX, Noto Sans Math) for reliable rendering
  • Keep one method (named, hex, or decimal) consistent across the document
  • Add visible text (e.g. “homothetic” or “homothety”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Put CSS escape \223B in HTML text nodes
  • Confuse ∻ with unrelated operators (e.g. &hercon;, U+22B9)
  • Assume every system font renders Mathematical Operators clearly
  • Rely on the symbol alone for screen reader users
  • Skip browser testing for math-heavy pages

Key Takeaways

1

Three HTML references plus CSS all render ∻

&#x223B; &#8763; &homtht;
2

For CSS stylesheets, use the escape in the content property

\223B
3

Unicode U+223B — HOMOTHETIC

4

Prefer &homtht; for readability in HTML source

❓ Frequently Asked Questions

Use &#x223B; (hex), &#8763; (decimal), &homtht; (named), or \223B in CSS content. All produce ∻.
U+223B (HOMOTHETIC). Mathematical Operators block (U+2200–U+22FF). Hex 223B, decimal 8763. Named entity: &homtht;.
In geometry and transformation notation, educational math pages, scientific papers and textbooks, technical documentation for CAD or graphics tools, and any web content that requires the homothety (homothetic) relation symbol.
&homtht; is the named HTML entity for ∻. It is part of the HTML5 named character set and the most readable option in source markup.
&homtht; is used directly in HTML content. The CSS escape \223B (or \0223B) belongs in stylesheets, typically in the content property of ::before or ::after. Both render ∻.
Homothety (homothetic transformation) scales a figure from a fixed center point by a constant factor. Two figures are homothetic if one can be obtained from the other by such scaling. ∻ denotes this relation.

Explore More HTML Entities!

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