Unicode Finder

"⊇" U+2287(SUPERSET OF OR EQUAL TO)

U+2287
Block Name
Mathematical Operators
Name
SUPERSET OF OR EQUAL TO

Programming

C
\u2287
JavaScript
\u2287
Java
\u2287
Json
\u2287
Python
\u2287
Perl
\x{2287}
PHP
\x{2287}
Ruby
\u{2287}
Rust
\u{2287}
Go
\u2287

Web

CSS
\002287
HtmlDecimal
⊇
HtmlHexadecimal
⊇
Url
%E2%8A%87

Code

MD5
b201ec8aee2ed3b2f00d75393230698a
Sha1
10e325f01ce894dd4e04549433ec9c90c1e1e5e7
Base64
4oqH

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2287';
console.log(char);  // Output: ⊇

Java:

char c = '\u2287';
System.out.println(c);  // Output: ⊇

JSON:

{"text": "\u2287"}  // Value: ⊇

Python:

char = '\u2287'
print(char)  # Output: ⊇

Perl:

my $char = "\x{2287}";
print $char;  # Output: ⊇

PHP:

$char = "\x{2287}";
echo $char;  // Output: ⊇

Ruby:

char = "\u{2287}"
puts char  # Output: ⊇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002287";  /* Display: ⊇ */
}

HTML Decimal:

<p>HTML decimal: &#8839;</p>  <!-- Display: ⊇ -->

HTML Hexadecimal:

<p>HTML hex: &#x2287;</p>  <!-- Display: ⊇ -->

URL Encoding:

// ⊇ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%87

Encodings

MD5:

b201ec8aee2ed3b2f00d75393230698a

SHA1:

10e325f01ce894dd4e04549433ec9c90c1e1e5e7

Base64:

4oqH