Unicode Finder

"ጝ" U+131D(ETHIOPIC SYLLABLE GGE)

U+131D
שם בלוק
Ethiopic
שם
ETHIOPIC SYLLABLE GGE

Programming

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

Web

CSS
\00131D
HtmlDecimal
ጝ
HtmlHexadecimal
ጝ
Url
%E1%8C%9D

Code

MD5
725f32279994816e832f1320bec3ff30
Sha1
e7b8bed7e73b87b7c76aa5eaa99353f4c7d1e147
Base64
4Yyd

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u131D';
console.log(char);  // Output: ጝ

Java:

char c = '\u131D';
System.out.println(c);  // Output: ጝ

JSON:

{"text": "\u131D"}  // Value: ጝ

Python:

char = '\u131D'
print(char)  # Output: ጝ

Perl:

my $char = "\x{131D}";
print $char;  # Output: ጝ

PHP:

$char = "\x{131D}";
echo $char;  // Output: ጝ

Ruby:

char = "\u{131D}"
puts char  # Output: ጝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4893;</p>  <!-- Display: ጝ -->

HTML Hexadecimal:

<p>HTML hex: &#x131D;</p>  <!-- Display: ጝ -->

URL Encoding:

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

Encodings

MD5:

725f32279994816e832f1320bec3ff30

SHA1:

e7b8bed7e73b87b7c76aa5eaa99353f4c7d1e147

Base64:

4Yyd