ASCII 61
Equals Sign (=)
Printable ASCII
Equals sign. Assignment in most languages. Comparison as == or ===.
All encodings at a glance
| Decimal | 61 |
| Hexadecimal | 0x3D |
| Octal | 0075 |
| Binary | 00111101 |
| HTML numeric entity | = |
| URL encoding | %3D |
| UTF-8 bytes | 0x3D |
Code snippets
JavaScript
String.fromCharCode(61); // "="
61.toString(16); // "3d"Python
chr(61) # '='
ord(chr(61)) # 61
hex(61) # '0x3d'HTML
= <!-- numeric entity (no named entity for this character) -->