Unicode Finder

"≕" U+2255(EQUALS COLON)

U+2255
Block Name
Mathematical Operators
Name
EQUALS COLON

Programming

C
\u2255
JavaScript
\u2255
Java
\u2255
Json
\u2255
Python
\u2255
Perl
\x{2255}
PHP
\x{2255}
Ruby
\u{2255}
Rust
\u{2255}
Go
\u2255

Web

CSS
\002255
HtmlDecimal
≕
HtmlHexadecimal
≕
Url
%E2%89%95

Code

MD5
9ca5d3d245e0ef396f7c36c6e5c00969
Sha1
6812a3ccbec4dd535de76e17e1ec00cd45310439
Base64
4omV

Usage Examples

Programming Languages

C:

char c = '\u2255';
printf("%c\n", c);  // Output: ≕

JavaScript:

const char = '\u2255';
console.log(char);  // Output: ≕

Java:

char c = '\u2255';
System.out.println(c);  // Output: ≕

JSON:

{"text": "\u2255"}  // Value: ≕

Python:

char = '\u2255'
print(char)  # Output: ≕

Perl:

my $char = "\x{2255}";
print $char;  # Output: ≕

PHP:

$char = "\x{2255}";
echo $char;  // Output: ≕

Ruby:

char = "\u{2255}"
puts char  # Output: ≕

Rust:

let c = '\u{2255}';
println!("{}", c);  // Output: ≕

Go:

char := '\u2255'
fmt.Printf("%c\n", char)  // Output: ≕

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002255";  /* Display: ≕ */
}

HTML Decimal:

<p>HTML decimal: &#8789;</p>  <!-- Display: ≕ -->

HTML Hexadecimal:

<p>HTML hex: &#x2255;</p>  <!-- Display: ≕ -->

URL Encoding:

// ≕ URL encoding
https://unicodefinder.com/search.php?query=%E2%89%95

Encodings

MD5:

9ca5d3d245e0ef396f7c36c6e5c00969

SHA1:

6812a3ccbec4dd535de76e17e1ec00cd45310439

Base64:

4omV