HTML Entity for Homothetic (∻)

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
U+223BMathematical Operators
∻Hexadecimal reference
∻Decimal reference
∻Most readable option
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 propertyComplete HTML Example
This example demonstrates the Homothetic symbol (∻) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\223B";
}
</style>
</head>
<body>
<p>Homothetic using Hexadecimal: ∻</p>
<p>Homothetic using Decimal: ∻</p>
<p>Homothetic using Named Entity: ∻</p>
<p id="point">Homothetic using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Homothetic symbol (∻) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Homothetic symbol (∻) in geometry and transformation notation:
🧠 How It Works
Hexadecimal Code
∻ uses the Unicode hexadecimal value 223B to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
∻ uses the decimal Unicode value 8763 to display the same character.
Named Entity
∻ is the semantic named entity for ∻—readable in source HTML and part of the HTML5 character set.
CSS Entity
\223B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Denote homothety (scaling from a center) in figures and proofs.
Geometry textbooks, course notes, and tutorials on transformations.
Express homothetic relations between shapes or sets in equations.
Geometry, topology, and applied mathematics publications on the web.
CAD, graphics, or geometry APIs that use homothety operations.
Web-based equation editors and transformation formula display.
💡 Best Practices
Do
- Use
∻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
\223Bin HTML text nodes - Confuse ∻ with unrelated operators (e.g.
⊹, 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
Three HTML references plus CSS all render ∻
∻ ∻ ∻For CSS stylesheets, use the escape in the content property
\223BUnicode U+223B — HOMOTHETIC
Prefer ∻ for readability in HTML source
Next: Homothetic Above
❓ Frequently Asked Questions
∻ (hex), ∻ (decimal), ∻ (named), or \223B in CSS content. All produce ∻.U+223B (HOMOTHETIC). Mathematical Operators block (U+2200–U+22FF). Hex 223B, decimal 8763. Named entity: ∻.∻ is the named HTML entity for ∻. It is part of the HTML5 named character set and the most readable option in source markup.∻ 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 ∻.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
