Unicode Finder

"ጀ" U+1300(ETHIOPIC SYLLABLE JA)

U+1300
區塊名稱
Ethiopic
名稱
ETHIOPIC SYLLABLE JA

Programming

C
\u1300
JavaScript
\u1300
Java
\u1300
Json
\u1300
Python
\u1300
Perl
\x{1300}
PHP
\x{1300}
Ruby
\u{1300}
Rust
\u{1300}
Go
\u1300

Web

CSS
\001300
HtmlDecimal
ጀ
HtmlHexadecimal
ጀ
Url
%E1%8C%80

Code

MD5
8de6b3b8bae5864683a0afed72dae2a7
Sha1
b2ba94b9286cd8650937881d667ee6d4f71cda4a
Base64
4YyA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1300';
console.log(char);  // Output: ጀ

Java:

char c = '\u1300';
System.out.println(c);  // Output: ጀ

JSON:

{"text": "\u1300"}  // Value: ጀ

Python:

char = '\u1300'
print(char)  # Output: ጀ

Perl:

my $char = "\x{1300}";
print $char;  # Output: ጀ

PHP:

$char = "\x{1300}";
echo $char;  // Output: ጀ

Ruby:

char = "\u{1300}"
puts char  # Output: ጀ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001300";  /* Display: ጀ */
}

HTML Decimal:

<p>HTML decimal: &#4864;</p>  <!-- Display: ጀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1300;</p>  <!-- Display: ጀ -->

URL Encoding:

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

Encodings

MD5:

8de6b3b8bae5864683a0afed72dae2a7

SHA1:

b2ba94b9286cd8650937881d667ee6d4f71cda4a

Base64:

4YyA