HTML Entity for Equal To By Definition (≝)

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

What You'll Learn

How to display the Equal To By Definition (≝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+225D (EQUAL TO BY DEFINITION) in the Mathematical Operators block (U+2200–U+22FF)—used when something is defined as something else (e.g. let x ≝ 5).

Render it with ≝, ≝, or CSS escape \225D. There is no named HTML entity for this symbol. Do not confuse ≝ with ordinary equality (=, U+003D) or identical to (≡, ≡).

⚡ Quick Reference — Equal To By Definition

Unicode U+225D

Mathematical Operators

Hex Code ≝

Hexadecimal reference

HTML Code ≝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+225D
Hex code       ≝
HTML code      ≝
Named entity   (none)
CSS code       \225D
Meaning        Is defined as / equals by definition
Related        U+003D = Equals (=); U+2261 = Identical to (≡ ≡)
1

Complete HTML Example

This example demonstrates the Equal To By Definition (≝) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\225D";
  }
 </style>
</head>
<body>
<p>Equal To By Definition using Hexadecimal: &#x225D;</p>
<p>Equal To By Definition using HTML Code: &#8797;</p>
<p id="point">Equal To By Definition using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equal To By Definition 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-to-by-definition symbol (≝) in a definition and compared with equals (=) and identical to (≡):

Definition Let f(x) ≝ x2
Large glyph
vs = and ≡ x ≝ 5  ·  2 + 2 = 4  ·  sin² θ + cos² θ ≡ 1
Numeric refs &#x225D; &#8797;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x225D; uses the Unicode hexadecimal value 225D to display this symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+225D in the Mathematical Operators block (U+2200–U+22FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Equal To By Definition (≝) commonly appears in:

📝 Definitions

Introduce symbols when first defining them in proofs or texts.

🎓 Education

Math and logic courses with formal is-defined-as notation.

📐 Logic

Formal logic and proof writing with definition steps.

💻 CS theory

Algorithms and semantics docs defining terms and invariants.

📰 Research

Papers and preprints with correct operator symbols in HTML.

🌐 Symbol guides

Math operator and Unicode reference pages.

💡 Best Practices

Do

  • Use &#x225D; or &#8797; for formal definitions
  • Use = or &equals; for ordinary equality
  • Use math-friendly fonts for clear ≝ rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Consider MathML for complex multi-line definitions

Don’t

  • Use ≝ when you only mean numeric equality (=)
  • Expect a named entity—none exists for U+225D
  • Put CSS escape \225D in HTML text nodes
  • Confuse ≝ with ≡ (identical to, not definition)
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references render ≝

&#x225D; &#8797;
2

For CSS stylesheets, use the escape in the content property

\225D
3

Unicode U+225D — EQUAL TO BY DEFINITION

4

Means is defined as, not general equality

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x225D; (hex), &#8797; (decimal), or \225D in CSS content. There is no named entity. All produce ≝.
U+225D (EQUAL TO BY DEFINITION). Mathematical Operators block (U+2200–U+22FF). Hex 225D, decimal 8797. Used for is defined as in math and logic.
When you introduce a formal definition, such as naming a variable or stating that one expression is defined to equal another by definition.
(U+225D) means is defined as or equals by definition. = (U+003D, &equals;) is ordinary equality or assignment in equations.
HTML references (&#8797; or &#x225D;) go in markup. The CSS escape \225D 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 — definitions, relations, and math operators.

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