Unicode Finder

"⊅" U+2285(NOT A SUPERSET OF)

U+2285
Block Name
Mathematical Operators
Name
NOT A SUPERSET OF

Programming

C
\u2285
JavaScript
\u2285
Java
\u2285
Json
\u2285
Python
\u2285
Perl
\x{2285}
PHP
\x{2285}
Ruby
\u{2285}
Rust
\u{2285}
Go
\u2285

Web

CSS
\002285
HtmlDecimal
⊅
HtmlHexadecimal
⊅
Url
%E2%8A%85

Code

MD5
e85586c270cff2c00a66e694a4b6dda9
Sha1
5ada04ddd2fcb864e3eecd1eba92dbee1c3b1218
Base64
4oqF

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2285';
console.log(char);  // Output: ⊅

Java:

char c = '\u2285';
System.out.println(c);  // Output: ⊅

JSON:

{"text": "\u2285"}  // Value: ⊅

Python:

char = '\u2285'
print(char)  # Output: ⊅

Perl:

my $char = "\x{2285}";
print $char;  # Output: ⊅

PHP:

$char = "\x{2285}";
echo $char;  // Output: ⊅

Ruby:

char = "\u{2285}"
puts char  # Output: ⊅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002285";  /* Display: ⊅ */
}

HTML Decimal:

<p>HTML decimal: &#8837;</p>  <!-- Display: ⊅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2285;</p>  <!-- Display: ⊅ -->

URL Encoding:

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

Encodings

MD5:

e85586c270cff2c00a66e694a4b6dda9

SHA1:

5ada04ddd2fcb864e3eecd1eba92dbee1c3b1218

Base64:

4oqF