Unicode Finder

"⊃" U+2283(SUPERSET OF)

U+2283
Block Name
Mathematical Operators
Name
SUPERSET OF

Programming

C
\u2283
JavaScript
\u2283
Java
\u2283
Json
\u2283
Python
\u2283
Perl
\x{2283}
PHP
\x{2283}
Ruby
\u{2283}
Rust
\u{2283}
Go
\u2283

Web

CSS
\002283
HtmlDecimal
⊃
HtmlHexadecimal
⊃
Url
%E2%8A%83

Code

MD5
47c79240e185e467039a4197e19b0361
Sha1
a97ec7c9842e0faabbb751470e4d732cb48d0583
Base64
4oqD

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2283';
console.log(char);  // Output: ⊃

Java:

char c = '\u2283';
System.out.println(c);  // Output: ⊃

JSON:

{"text": "\u2283"}  // Value: ⊃

Python:

char = '\u2283'
print(char)  # Output: ⊃

Perl:

my $char = "\x{2283}";
print $char;  # Output: ⊃

PHP:

$char = "\x{2283}";
echo $char;  // Output: ⊃

Ruby:

char = "\u{2283}"
puts char  # Output: ⊃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002283";  /* Display: ⊃ */
}

HTML Decimal:

<p>HTML decimal: &#8835;</p>  <!-- Display: ⊃ -->

HTML Hexadecimal:

<p>HTML hex: &#x2283;</p>  <!-- Display: ⊃ -->

URL Encoding:

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

Encodings

MD5:

47c79240e185e467039a4197e19b0361

SHA1:

a97ec7c9842e0faabbb751470e4d732cb48d0583

Base64:

4oqD