Unicode Finder

"⫐" U+2AD0(CLOSED SUPERSET)

U+2AD0
Block Name
Supplemental Mathematical Operators
Name
CLOSED SUPERSET

Programming

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

Web

CSS
\002AD0
HtmlDecimal
⫐
HtmlHexadecimal
⫐
Url
%E2%AB%90

Code

MD5
4a684ea517da1973932020234bbfd58e
Sha1
c6314a89f64f0e1827755db541de2596ec22e1ec
Base64
4quQ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AD0';
console.log(char);  // Output: ⫐

Java:

char c = '\u2AD0';
System.out.println(c);  // Output: ⫐

JSON:

{"text": "\u2AD0"}  // Value: ⫐

Python:

char = '\u2AD0'
print(char)  # Output: ⫐

Perl:

my $char = "\x{2AD0}";
print $char;  # Output: ⫐

PHP:

$char = "\x{2AD0}";
echo $char;  // Output: ⫐

Ruby:

char = "\u{2AD0}"
puts char  # Output: ⫐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10960;</p>  <!-- Display: ⫐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AD0;</p>  <!-- Display: ⫐ -->

URL Encoding:

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

Encodings

MD5:

4a684ea517da1973932020234bbfd58e

SHA1:

c6314a89f64f0e1827755db541de2596ec22e1ec

Base64:

4quQ