Unicode Finder

"ጓ" U+1313(ETHIOPIC SYLLABLE GWAA)

U+1313
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE GWAA

Programming

C
\u1313
JavaScript
\u1313
Java
\u1313
Json
\u1313
Python
\u1313
Perl
\x{1313}
PHP
\x{1313}
Ruby
\u{1313}
Rust
\u{1313}
Go
\u1313

Web

CSS
\001313
HtmlDecimal
ጓ
HtmlHexadecimal
ጓ
Url
%E1%8C%93

Code

MD5
90287c3ade1e72f43f5d7ae5745e5697
Sha1
591e026bab01e05ad7eaf518f78808d0ebf84580
Base64
4YyT

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u1313';
console.log(char);  // Output: ጓ

Java:

char c = '\u1313';
System.out.println(c);  // Output: ጓ

JSON:

{"text": "\u1313"}  // Value: ጓ

Python:

char = '\u1313'
print(char)  # Output: ጓ

Perl:

my $char = "\x{1313}";
print $char;  # Output: ጓ

PHP:

$char = "\x{1313}";
echo $char;  // Output: ጓ

Ruby:

char = "\u{1313}"
puts char  # Output: ጓ

Rust:

let c = '\u{1313}';
println!("{}", c);  // Output: ጓ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001313";  /* Display: ጓ */
}

HTML Decimal:

<p>HTML decimal: &#4883;</p>  <!-- Display: ጓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1313;</p>  <!-- Display: ጓ -->

URL Encoding:

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

Encodings

MD5:

90287c3ade1e72f43f5d7ae5745e5697

SHA1:

591e026bab01e05ad7eaf518f78808d0ebf84580

Base64:

4YyT