Unicode Finder

"⫙" U+2AD9(ELEMENT OF OPENING DOWNWARDS)

U+2AD9
Block Name
Supplemental Mathematical Operators
Name
ELEMENT OF OPENING DOWNWARDS

Programming

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

Web

CSS
\002AD9
HtmlDecimal
⫙
HtmlHexadecimal
⫙
Url
%E2%AB%99

Code

MD5
38046d69296ddd6926079fd7468ac245
Sha1
d57391d9cd2d865df690df70edc357135f8ed8f7
Base64
4quZ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AD9';
console.log(char);  // Output: ⫙

Java:

char c = '\u2AD9';
System.out.println(c);  // Output: ⫙

JSON:

{"text": "\u2AD9"}  // Value: ⫙

Python:

char = '\u2AD9'
print(char)  # Output: ⫙

Perl:

my $char = "\x{2AD9}";
print $char;  # Output: ⫙

PHP:

$char = "\x{2AD9}";
echo $char;  // Output: ⫙

Ruby:

char = "\u{2AD9}"
puts char  # Output: ⫙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10969;</p>  <!-- Display: ⫙ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AD9;</p>  <!-- Display: ⫙ -->

URL Encoding:

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

Encodings

MD5:

38046d69296ddd6926079fd7468ac245

SHA1:

d57391d9cd2d865df690df70edc357135f8ed8f7

Base64:

4quZ