Unicode Finder

"ይ" U+12ED(ETHIOPIC SYLLABLE YE)

U+12ED
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE YE

Programming

C
\u12ED
JavaScript
\u12ED
Java
\u12ED
Json
\u12ED
Python
\u12ED
Perl
\x{12ED}
PHP
\x{12ED}
Ruby
\u{12ED}
Rust
\u{12ED}
Go
\u12ED

Web

CSS
\0012ED
HtmlDecimal
ይ
HtmlHexadecimal
ይ
Url
%E1%8B%AD

Code

MD5
40ae5cf31667726a90a5a50431b47dbe
Sha1
2f144ecfdccd197387b017839038c306b9d52f9c
Base64
4Yut

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12ED';
console.log(char);  // Output: ይ

Java:

char c = '\u12ED';
System.out.println(c);  // Output: ይ

JSON:

{"text": "\u12ED"}  // Value: ይ

Python:

char = '\u12ED'
print(char)  # Output: ይ

Perl:

my $char = "\x{12ED}";
print $char;  # Output: ይ

PHP:

$char = "\x{12ED}";
echo $char;  // Output: ይ

Ruby:

char = "\u{12ED}"
puts char  # Output: ይ

Rust:

let c = '\u{12ED}';
println!("{}", c);  // Output: ይ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0012ED";  /* Display: ይ */
}

HTML Decimal:

<p>HTML decimal: &#4845;</p>  <!-- Display: ይ -->

HTML Hexadecimal:

<p>HTML hex: &#x12ED;</p>  <!-- Display: ይ -->

URL Encoding:

// ይ URL encoding
https://unicodefinder.com/search.php?query=%E1%8B%AD

Encodings

MD5:

40ae5cf31667726a90a5a50431b47dbe

SHA1:

2f144ecfdccd197387b017839038c306b9d52f9c

Base64:

4Yut