EQUALS SIGN vs IDENTICAL TO
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://unicodefyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://unicodefyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://unicodefyi.com/entity//)
Use the native HTML custom element.
copied1 = false, 2000)"
:class="copied1 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
=
EQUALS SIGN
U+003D
View details →
copied2 = false, 2000)"
:class="copied2 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
≡
IDENTICAL TO
U+2261
View details →
VS
Property Comparison
| Property | = U+003D | ≡ U+2261 |
|---|---|---|
| Name | EQUALS SIGN | IDENTICAL TO |
| Block | Basic Latin | Mathematical Operators |
| Script | Zyyy | Zyyy |
| Category | Math Symbol (Sm) | Math Symbol (Sm) |
| Bidirectional | ON | ON |
Encoding Comparison
| Format | U+003D | U+2261 |
|---|---|---|
| unicode | U+003D | U+2261 |
| decimal | 61 | 8801 |
| htmldecimal | = | ≡ |
| htmlhex | = | ≡ |
| css | \003D | \2261 |
| javascript | \u{3D} | \u{2261} |
| python | \u003d | \u2261 |
| java | \u003D | \u2261 |
| go | \u003D | \u2261 |
| ruby | \u{3D} | \u{2261} |
| rust | \u{3D} | \u{2261} |
| ccpp | \u003d | \u2261 |
| urlencoded | %3D | %E2%89%A1 |
| utf8bytes | 3d | e2 89 a1 |
| utf16bebytes | 00 3d | 22 61 |
| utf32bebytes | 00 00 00 3d | 00 00 22 61 |
How to Distinguish
Both characters use the Zyyy script but are in different blocks: EQUALS SIGN in Basic Latin and IDENTICAL TO in Mathematical Operators.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.