Unicode Finder

"ጅ" U+1305(ETHIOPIC SYLLABLE JE)

U+1305
블록 이름
Ethiopic
이름
ETHIOPIC SYLLABLE JE

Programming

C
\u1305
JavaScript
\u1305
Java
\u1305
Json
\u1305
Python
\u1305
Perl
\x{1305}
PHP
\x{1305}
Ruby
\u{1305}
Rust
\u{1305}
Go
\u1305

Web

CSS
\001305
HtmlDecimal
ጅ
HtmlHexadecimal
ጅ
Url
%E1%8C%85

Code

MD5
8bef6ca564e69104e5d8f32b2e737866
Sha1
9666a1f525b48aea50300f07a98598147e08d377
Base64
4YyF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u1305';
console.log(char);  // Output: ጅ

Java:

char c = '\u1305';
System.out.println(c);  // Output: ጅ

JSON:

{"text": "\u1305"}  // Value: ጅ

Python:

char = '\u1305'
print(char)  # Output: ጅ

Perl:

my $char = "\x{1305}";
print $char;  # Output: ጅ

PHP:

$char = "\x{1305}";
echo $char;  // Output: ጅ

Ruby:

char = "\u{1305}"
puts char  # Output: ጅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001305";  /* Display: ጅ */
}

HTML Decimal:

<p>HTML decimal: &#4869;</p>  <!-- Display: ጅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1305;</p>  <!-- Display: ጅ -->

URL Encoding:

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

Encodings

MD5:

8bef6ca564e69104e5d8f32b2e737866

SHA1:

9666a1f525b48aea50300f07a98598147e08d377

Base64:

4YyF