HTML Entity for Equal Parallel To (⋕)

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

What You'll Learn

How to display the Equal Parallel To (⋕) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22D5 (EQUAL AND PARALLEL TO) in the Mathematical Operators block (U+2200–U+22FF)—used when two lines or geometric objects are both equal and parallel.

Render it with ⋕, ⋕, the named entity ⋕, or CSS escape \22D5. Do not confuse ⋕ (⋕) with the parallel alone symbol (∥, U+2225, ∥).

⚡ Quick Reference — Equal Parallel To

Unicode U+22D5

Mathematical Operators

Hex Code ⋕

Hexadecimal reference

HTML Code ⋕

Decimal reference

Named Entity ⋕

Equal and parallel

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22D5
Hex code       ⋕
HTML code      ⋕
Named entity   ⋕
CSS code       \22D5
Related        U+2225 = Parallel (∥ ∥); U+003D = Equals (=)
1

Complete HTML Example

This example demonstrates the Equal Parallel To (⋕) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22D5";
  }
 </style>
</head>
<body>
<p>Equal Parallel To using Hexadecimal: &#x22D5;</p>
<p>Equal Parallel To using HTML Code: &#8917;</p>
<p>Equal Parallel To using HTML Entity: &epar;</p>
<p id="point">Equal Parallel To using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equal Parallel To entity is universally supported in modern browsers:

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

👀 Live Preview

See the equal parallel to symbol (⋕) in geometry context and compared with parallel alone (∥):

Inline text ABCD
Large glyph
vs parallel &epar; ⋕   vs   &par;
Entities &epar;
Numeric refs &#x22D5; &#8917; &epar;

🧠 How It Works

1

Hexadecimal Code

&#x22D5; uses the Unicode hexadecimal value 22D5 to display this symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&epar; is the semantic named entity for equal and parallel to—easiest to read in geometry markup.

HTML markup
4

CSS Entity

\22D5 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+22D5 in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Equal Parallel To (⋕) commonly appears in:

📐 Geometry

Denote lines or segments that are equal in length and parallel.

🎓 Education

Textbooks, courses, and worksheets on Euclidean geometry.

📝 Linear algebra

Vector and line relations in technical documentation.

💻 Engineering

Diagrams and specs with formal geometric notation.

📰 Research

Papers publishing correct operator symbols in HTML.

🌐 Symbol guides

Math and geometry entity reference pages.

💡 Best Practices

Do

  • Use &epar; for readable geometry markup (U+22D5)
  • Use &par; (∥) only when parallel alone is meant
  • Use math-friendly fonts for clear ⋕ rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add context when the symbol carries semantic meaning

Don’t

  • Confuse ⋕ (equal and parallel) with ∥ (parallel only)
  • Use ⋕ when simple equality (=) is sufficient
  • Put CSS escape \22D5 in HTML text nodes
  • Assume all fonts distinguish ⋕ and ∥ clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS all render ⋕

&#x22D5; &#8917; &epar;
2

For CSS stylesheets, use the escape in the content property

\22D5
3

Unicode U+22D5 — EQUAL AND PARALLEL TO

4

&epar; is the standard named entity

5

Parallel alone is ∥ (&par;, U+2225)

❓ Frequently Asked Questions

Use &#x22D5; (hex), &#8917; (decimal), &epar; (named), or \22D5 in CSS content. All produce ⋕.
U+22D5 (EQUAL AND PARALLEL TO). Mathematical Operators block (U+2200–U+22FF). Hex 22D5, decimal 8917.
When your notation requires that two lines or geometric objects are both equal in measure and parallel, as opposed to parallel alone or simple equality.
&epar; renders ⋕ (U+22D5, equal and parallel to). &par; renders ∥ (U+2225, parallel only). They are different characters with different meanings.
HTML entities (&#8917;, &#x22D5;, or &epar;) go directly in markup. The CSS escape \22D5 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 — geometry, math operators, 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