HTML Entity for Geometric Proportional (∺)

What You'll Learn
How to display the Geometric Proportional symbol (∺) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+223A (GEOMETRIC PROPORTION) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ∺, ∺, ∺, or CSS escape \223A. Do not confuse ∺ with proportional to (∝, U+221D), which is a different operator.
⚡ Quick Reference — Geometric Proportional
U+223AMathematical Operators
∺Hexadecimal reference
∺Decimal reference
∺Most readable option
Name Value
──────────── ──────────
Unicode U+223A
Hex code ∺
HTML code ∺
Named entity ∺
CSS code \223A
Meaning Geometric proportion
Not to confuse U+221D = proportional to (∝)Complete HTML Example
This example demonstrates the Geometric Proportional symbol (∺) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\223A";
}
</style>
</head>
<body>
<p>Geometric Proportional using Hexadecimal: ∺</p>
<p>Geometric Proportional using Decimal: ∺</p>
<p>Geometric Proportional using Named Entity: ∺</p>
<p id="point">Geometric Proportional using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Geometric Proportional symbol (∺) is universally supported in modern browsers with a math-capable font:
👀 Live Preview
See the Geometric Proportional symbol (∺) in math and geometry contexts:
🧠 How It Works
Hexadecimal Code
∺ uses the Unicode hexadecimal value 223A to display the Geometric Proportional symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
∺ uses the decimal Unicode value 8762 to display the same character.
Named Entity
∺ is the semantic named entity for ∺—the easiest to read in source HTML and part of the HTML5 character set.
CSS Entity
\223A 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+223A is in Mathematical Operators (U+2200–U+22FF). Next: Geometrically Equal To (≑).
Use Cases
The Geometric Proportional symbol (∺) is commonly used in:
Notation involving geometric proportion, ratios, or similar relations.
Textbooks, proofs, and content that expresses geometric proportionality.
Papers, specifications, and documentation using mathematical operators.
Online courses, tutorials, and resources for math or geometry.
HTML entity lists, Unicode charts, and math symbol documentation.
Web pages displaying mathematical expressions with proper typography.
💡 Best Practices
Do
- Use
∺for readable source markup - Pick one style (hex / decimal / named) per project
- Use math fonts (e.g. Cambria Math) for reliable glyph rendering
- Consider MathML for complex equations and accessibility
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ∺ (geometric proportion) with ∝ (proportional to)
- Mix entity styles randomly in one file
- Put CSS escape
\223Ain HTML text nodes - Assume every font renders ∺ correctly
- Rely on the symbol alone without context for screen readers
Key Takeaways
Three HTML references plus CSS all render ∺
∺ ∺ ∺For CSS stylesheets, use the escape in the content property
\223AUnicode U+223A — GEOMETRIC PROPORTION
Prefer ∺ for readability in HTML source
❓ Frequently Asked Questions
∺ (hex), ∺ (decimal), ∺ (named), or \223A in CSS content. All produce ∺.U+223A (GEOMETRIC PROPORTION). Mathematical Operators block. Hex 223A, decimal 8762. Named entity: ∺. Not the same as U+221D (∝).∺ is the named HTML entity for ∺. It is part of the HTML5 named character set and the most readable option in source markup.∺, ∺, or ∺) go in markup. The CSS escape \223A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, geometry symbols, and more.
8 people found this page helpful
