Unicode Finder

"ጒ" U+1312(ETHIOPIC SYLLABLE GWI)

U+1312
Όνομα Μπλοκ
Ethiopic
Όνομα
ETHIOPIC SYLLABLE GWI

Programming

C
\u1312
JavaScript
\u1312
Java
\u1312
Json
\u1312
Python
\u1312
Perl
\x{1312}
PHP
\x{1312}
Ruby
\u{1312}
Rust
\u{1312}
Go
\u1312

Web

CSS
\001312
HtmlDecimal
ጒ
HtmlHexadecimal
ጒ
Url
%E1%8C%92

Code

MD5
30fcc9bb6e608a2932b75f15e5e52035
Sha1
adb6d1e9ed42ece04627e0b23a7e542cbcfea686
Base64
4YyS

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u1312';
console.log(char);  // Output: ጒ

Java:

char c = '\u1312';
System.out.println(c);  // Output: ጒ

JSON:

{"text": "\u1312"}  // Value: ጒ

Python:

char = '\u1312'
print(char)  # Output: ጒ

Perl:

my $char = "\x{1312}";
print $char;  # Output: ጒ

PHP:

$char = "\x{1312}";
echo $char;  // Output: ጒ

Ruby:

char = "\u{1312}"
puts char  # Output: ጒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001312";  /* Display: ጒ */
}

HTML Decimal:

<p>HTML decimal: &#4882;</p>  <!-- Display: ጒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1312;</p>  <!-- Display: ጒ -->

URL Encoding:

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

Encodings

MD5:

30fcc9bb6e608a2932b75f15e5e52035

SHA1:

adb6d1e9ed42ece04627e0b23a7e542cbcfea686

Base64:

4YyS