Unicode Finder

"⫖" U+2AD6(SUPERSET ABOVE SUPERSET)

U+2AD6
Block Name
Supplemental Mathematical Operators
Name
SUPERSET ABOVE SUPERSET

Programming

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

Web

CSS
\002AD6
HtmlDecimal
⫖
HtmlHexadecimal
⫖
Url
%E2%AB%96

Code

MD5
28a019ccf0a1ed2112dc57772a08c993
Sha1
135cb009f45e68f539f932a0f994936ff38c8482
Base64
4quW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AD6';
console.log(char);  // Output: ⫖

Java:

char c = '\u2AD6';
System.out.println(c);  // Output: ⫖

JSON:

{"text": "\u2AD6"}  // Value: ⫖

Python:

char = '\u2AD6'
print(char)  # Output: ⫖

Perl:

my $char = "\x{2AD6}";
print $char;  # Output: ⫖

PHP:

$char = "\x{2AD6}";
echo $char;  // Output: ⫖

Ruby:

char = "\u{2AD6}"
puts char  # Output: ⫖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10966;</p>  <!-- Display: ⫖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AD6;</p>  <!-- Display: ⫖ -->

URL Encoding:

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

Encodings

MD5:

28a019ccf0a1ed2112dc57772a08c993

SHA1:

135cb009f45e68f539f932a0f994936ff38c8482

Base64:

4quW