DevKits

ASCII 61

Equals Sign (=)

Printable ASCII

Equals sign. Assignment in most languages. Comparison as == or ===.

All encodings at a glance

Decimal61
Hexadecimal0x3D
Octal0075
Binary00111101
HTML numeric entity=
URL encoding%3D
UTF-8 bytes0x3D

Code snippets

JavaScript

String.fromCharCode(61); // "="
61.toString(16); // "3d"

Python

chr(61)           # '='
ord(chr(61))      # 61
hex(61)           # '0x3d'

HTML

&#61;   <!-- numeric entity (no named entity for this character) -->

Nearby codes