Unicode Finder

"≡" U+2261(IDENTICAL TO)

U+2261
Block Name
Mathematical Operators
Name
IDENTICAL TO

Programming

C
\u2261
JavaScript
\u2261
Java
\u2261
Json
\u2261
Python
\u2261
Perl
\x{2261}
PHP
\x{2261}
Ruby
\u{2261}
Rust
\u{2261}
Go
\u2261

Web

CSS
\002261
HtmlDecimal
≡
HtmlHexadecimal
≡
Url
%E2%89%A1

Code

MD5
c299b5fc01cc9903ec11c973bef2f6cc
Sha1
c0d4fcb67847d011995291c036f1af8f6cff104b
Base64
4omh

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2261';
console.log(char);  // Output: ≡

Java:

char c = '\u2261';
System.out.println(c);  // Output: ≡

JSON:

{"text": "\u2261"}  // Value: ≡

Python:

char = '\u2261'
print(char)  # Output: ≡

Perl:

my $char = "\x{2261}";
print $char;  # Output: ≡

PHP:

$char = "\x{2261}";
echo $char;  // Output: ≡

Ruby:

char = "\u{2261}"
puts char  # Output: ≡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002261";  /* Display: ≡ */
}

HTML Decimal:

<p>HTML decimal: &#8801;</p>  <!-- Display: ≡ -->

HTML Hexadecimal:

<p>HTML hex: &#x2261;</p>  <!-- Display: ≡ -->

URL Encoding:

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

Encodings

MD5:

c299b5fc01cc9903ec11c973bef2f6cc

SHA1:

c0d4fcb67847d011995291c036f1af8f6cff104b

Base64:

4omh