Unicode Finder

"ጙ" U+1319(ETHIOPIC SYLLABLE GGU)

U+1319
區塊名稱
Ethiopic
名稱
ETHIOPIC SYLLABLE GGU

Programming

C
\u1319
JavaScript
\u1319
Java
\u1319
Json
\u1319
Python
\u1319
Perl
\x{1319}
PHP
\x{1319}
Ruby
\u{1319}
Rust
\u{1319}
Go
\u1319

Web

CSS
\001319
HtmlDecimal
ጙ
HtmlHexadecimal
ጙ
Url
%E1%8C%99

Code

MD5
bb282f204eac18b901b0cfdfd2ece353
Sha1
eb78034601bb6038c3e0e3c7a1b02ddc04294985
Base64
4YyZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1319';
console.log(char);  // Output: ጙ

Java:

char c = '\u1319';
System.out.println(c);  // Output: ጙ

JSON:

{"text": "\u1319"}  // Value: ጙ

Python:

char = '\u1319'
print(char)  # Output: ጙ

Perl:

my $char = "\x{1319}";
print $char;  # Output: ጙ

PHP:

$char = "\x{1319}";
echo $char;  // Output: ጙ

Ruby:

char = "\u{1319}"
puts char  # Output: ጙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001319";  /* Display: ጙ */
}

HTML Decimal:

<p>HTML decimal: &#4889;</p>  <!-- Display: ጙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1319;</p>  <!-- Display: ጙ -->

URL Encoding:

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

Encodings

MD5:

bb282f204eac18b901b0cfdfd2ece353

SHA1:

eb78034601bb6038c3e0e3c7a1b02ddc04294985

Base64:

4YyZ