Unicode Finder

"ⷞ" U+2DDE(ETHIOPIC SYLLABLE GYO)

U+2DDE
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE GYO

Programming

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

Web

CSS
\002DDE
HtmlDecimal
ⷞ
HtmlHexadecimal
ⷞ
Url
%E2%B7%9E

Code

MD5
cd35266c3ce45dc7f27f4911c1c5e53a
Sha1
42d1e56fa9c18aecaa73658f776352ce5ff41d57
Base64
4ree

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DDE';
console.log(char);  // Output: ⷞ

Java:

char c = '\u2DDE';
System.out.println(c);  // Output: ⷞ

JSON:

{"text": "\u2DDE"}  // Value: ⷞ

Python:

char = '\u2DDE'
print(char)  # Output: ⷞ

Perl:

my $char = "\x{2DDE}";
print $char;  # Output: ⷞ

PHP:

$char = "\x{2DDE}";
echo $char;  // Output: ⷞ

Ruby:

char = "\u{2DDE}"
puts char  # Output: ⷞ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11742;</p>  <!-- Display: ⷞ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DDE;</p>  <!-- Display: ⷞ -->

URL Encoding:

// ⷞ URL encoding
https://unicodefinder.com/search.php?query=%E2%B7%9E

Encodings

MD5:

cd35266c3ce45dc7f27f4911c1c5e53a

SHA1:

42d1e56fa9c18aecaa73658f776352ce5ff41d57

Base64:

4ree