Unicode Finder

"ጜ" U+131C(ETHIOPIC SYLLABLE GGEE)

U+131C
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE GGEE

Programming

C
\u131C
JavaScript
\u131C
Java
\u131C
Json
\u131C
Python
\u131C
Perl
\x{131C}
PHP
\x{131C}
Ruby
\u{131C}
Rust
\u{131C}
Go
\u131C

Web

CSS
\00131C
HtmlDecimal
ጜ
HtmlHexadecimal
ጜ
Url
%E1%8C%9C

Code

MD5
0a62e6cda7cf4cccc419014c08e58cd9
Sha1
13c6747b2d8719ed410270007e7c0e4c54436b67
Base64
4Yyc

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u131C';
console.log(char);  // Output: ጜ

Java:

char c = '\u131C';
System.out.println(c);  // Output: ጜ

JSON:

{"text": "\u131C"}  // Value: ጜ

Python:

char = '\u131C'
print(char)  # Output: ጜ

Perl:

my $char = "\x{131C}";
print $char;  # Output: ጜ

PHP:

$char = "\x{131C}";
echo $char;  // Output: ጜ

Ruby:

char = "\u{131C}"
puts char  # Output: ጜ

Rust:

let c = '\u{131C}';
println!("{}", c);  // Output: ጜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00131C";  /* Display: ጜ */
}

HTML Decimal:

<p>HTML decimal: &#4892;</p>  <!-- Display: ጜ -->

HTML Hexadecimal:

<p>HTML hex: &#x131C;</p>  <!-- Display: ጜ -->

URL Encoding:

// ጜ URL encoding
https://unicodefinder.com/search.php?query=%E1%8C%9C

Encodings

MD5:

0a62e6cda7cf4cccc419014c08e58cd9

SHA1:

13c6747b2d8719ed410270007e7c0e4c54436b67

Base64:

4Yyc