Unicode Finder

"ⷌ" U+2DCC(ETHIOPIC SYLLABLE KYEE)

U+2DCC
Block Name
Ethiopic Extended
Name
ETHIOPIC SYLLABLE KYEE

Programming

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

Web

CSS
\002DCC
HtmlDecimal
ⷌ
HtmlHexadecimal
ⷌ
Url
%E2%B7%8C

Code

MD5
6d1b9a0f1f29526891c9cdbc1bdcf447
Sha1
7f3b5ac5aecdb406e856fcb97a77bd7b0220af43
Base64
4reM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DCC';
console.log(char);  // Output: ⷌ

Java:

char c = '\u2DCC';
System.out.println(c);  // Output: ⷌ

JSON:

{"text": "\u2DCC"}  // Value: ⷌ

Python:

char = '\u2DCC'
print(char)  # Output: ⷌ

Perl:

my $char = "\x{2DCC}";
print $char;  # Output: ⷌ

PHP:

$char = "\x{2DCC}";
echo $char;  // Output: ⷌ

Ruby:

char = "\u{2DCC}"
puts char  # Output: ⷌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11724;</p>  <!-- Display: ⷌ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DCC;</p>  <!-- Display: ⷌ -->

URL Encoding:

// ⷌ URL encoding
https://unicodefinder.com/search.php?query=%E2%B7%8C

Encodings

MD5:

6d1b9a0f1f29526891c9cdbc1bdcf447

SHA1:

7f3b5ac5aecdb406e856fcb97a77bd7b0220af43

Base64:

4reM