Unicode Finder

"≓" U+2253(IMAGE OF OR APPROXIMATELY EQUAL TO)

U+2253
Block Name
Mathematical Operators
Name
IMAGE OF OR APPROXIMATELY EQUAL TO

Programming

C
\u2253
JavaScript
\u2253
Java
\u2253
Json
\u2253
Python
\u2253
Perl
\x{2253}
PHP
\x{2253}
Ruby
\u{2253}
Rust
\u{2253}
Go
\u2253

Web

CSS
\002253
HtmlDecimal
≓
HtmlHexadecimal
≓
Url
%E2%89%93

Code

MD5
ae4f6cfc398057f326aacf0682be8904
Sha1
97c00f4c92a08f68fb1138c3306e45fe04d833b0
Base64
4omT

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2253';
console.log(char);  // Output: ≓

Java:

char c = '\u2253';
System.out.println(c);  // Output: ≓

JSON:

{"text": "\u2253"}  // Value: ≓

Python:

char = '\u2253'
print(char)  # Output: ≓

Perl:

my $char = "\x{2253}";
print $char;  # Output: ≓

PHP:

$char = "\x{2253}";
echo $char;  // Output: ≓

Ruby:

char = "\u{2253}"
puts char  # Output: ≓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002253";  /* Display: ≓ */
}

HTML Decimal:

<p>HTML decimal: &#8787;</p>  <!-- Display: ≓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2253;</p>  <!-- Display: ≓ -->

URL Encoding:

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

Encodings

MD5:

ae4f6cfc398057f326aacf0682be8904

SHA1:

97c00f4c92a08f68fb1138c3306e45fe04d833b0

Base64:

4omT