Unicode Finder

"⫒" U+2AD2(CLOSED SUPERSET OR EQUAL TO)

U+2AD2
Block Name
Supplemental Mathematical Operators
Name
CLOSED SUPERSET OR EQUAL TO

Programming

C
\u2AD2
JavaScript
\u2AD2
Java
\u2AD2
Json
\u2AD2
Python
\u2AD2
Perl
\x{2AD2}
PHP
\x{2AD2}
Ruby
\u{2AD2}
Rust
\u{2AD2}
Go
\u2AD2

Web

CSS
\002AD2
HtmlDecimal
⫒
HtmlHexadecimal
⫒
Url
%E2%AB%92

Code

MD5
46200a59a97b8cec2f35b28e258076d9
Sha1
33df35d90736fe4c9f9f8bf6a73ab29cf3ae19db
Base64
4quS

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AD2';
console.log(char);  // Output: ⫒

Java:

char c = '\u2AD2';
System.out.println(c);  // Output: ⫒

JSON:

{"text": "\u2AD2"}  // Value: ⫒

Python:

char = '\u2AD2'
print(char)  # Output: ⫒

Perl:

my $char = "\x{2AD2}";
print $char;  # Output: ⫒

PHP:

$char = "\x{2AD2}";
echo $char;  // Output: ⫒

Ruby:

char = "\u{2AD2}"
puts char  # Output: ⫒

Rust:

let c = '\u{2AD2}';
println!("{}", c);  // Output: ⫒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002AD2";  /* Display: ⫒ */
}

HTML Decimal:

<p>HTML decimal: &#10962;</p>  <!-- Display: ⫒ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AD2;</p>  <!-- Display: ⫒ -->

URL Encoding:

// ⫒ URL encoding
https://unicodefinder.com/search.php?query=%E2%AB%92

Encodings

MD5:

46200a59a97b8cec2f35b28e258076d9

SHA1:

33df35d90736fe4c9f9f8bf6a73ab29cf3ae19db

Base64:

4quS