Unicode Finder

"⫔" U+2AD4(SUPERSET ABOVE SUBSET)

U+2AD4
Block Name
Supplemental Mathematical Operators
Name
SUPERSET ABOVE SUBSET

Programming

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

Web

CSS
\002AD4
HtmlDecimal
⫔
HtmlHexadecimal
⫔
Url
%E2%AB%94

Code

MD5
3c00e565d7d6fa842ecd5177653255fa
Sha1
01e875882f1ad0e855c2a4c181806703529d9c4d
Base64
4quU

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AD4';
console.log(char);  // Output: ⫔

Java:

char c = '\u2AD4';
System.out.println(c);  // Output: ⫔

JSON:

{"text": "\u2AD4"}  // Value: ⫔

Python:

char = '\u2AD4'
print(char)  # Output: ⫔

Perl:

my $char = "\x{2AD4}";
print $char;  # Output: ⫔

PHP:

$char = "\x{2AD4}";
echo $char;  // Output: ⫔

Ruby:

char = "\u{2AD4}"
puts char  # Output: ⫔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10964;</p>  <!-- Display: ⫔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AD4;</p>  <!-- Display: ⫔ -->

URL Encoding:

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

Encodings

MD5:

3c00e565d7d6fa842ecd5177653255fa

SHA1:

01e875882f1ad0e855c2a4c181806703529d9c4d

Base64:

4quU