=

ASCII Character: Equals sign

ASCII Code 61 · Unicode U+003D · Hex 0x3D

equals-sign equals equal-sign

About the Equals sign Character

ASCII code 61 (0x3D) represents the Equals sign character "=". The "Equals sign" character (=) with ASCII code 61 is a mathematical operator. Mathematical operators in the printable ASCII range provide the fundamental arithmetic symbols used in programming, spreadsheets, and mathematical notation. The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 61
Hexadecimal 0x3D
Octal 075
Binary 00111101
Unicode U+003D
Unicode Name EQUALS SIGN
HTML Numeric =
HTML Entity =
URL Escape %3D
UTF-8 (Hex) 3D
Quoted-Printable =3D

Source Code Examples

JavaScript
// Character literal
let char = '=';
// Using char code
let char2 = String.fromCharCode(61);
// Unicode escape
let char3 = '\x3D';
Python
# Character literal
char = '='
# Using chr()
char = chr(61)
# Using ord() to get code
code = ord('=')  # Returns 61
HTML
<!-- Direct character -->
=
<!-- HTML entity (numeric) -->
&#61;
<!-- Hex entity -->
&#x3D;
C#
// Character literal
char c = '=';
// Using cast
char c2 = (char)61;
// To get code from char
int code = (int)'=';  // Returns 61

Navigate

Copied!