Unicode Finder

"ጦ" U+1326(ETHIOPIC SYLLABLE THO)

U+1326
區塊名稱
Ethiopic
名稱
ETHIOPIC SYLLABLE THO

Programming

C
\u1326
JavaScript
\u1326
Java
\u1326
Json
\u1326
Python
\u1326
Perl
\x{1326}
PHP
\x{1326}
Ruby
\u{1326}
Rust
\u{1326}
Go
\u1326

Web

CSS
\001326
HtmlDecimal
ጦ
HtmlHexadecimal
ጦ
Url
%E1%8C%A6

Code

MD5
0ee3c27b8dcf24472f0f72663e3345d9
Sha1
b2e076951d855e019e6cf2812f05cfa7a53f6ad3
Base64
4Yym

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1326';
console.log(char);  // Output: ጦ

Java:

char c = '\u1326';
System.out.println(c);  // Output: ጦ

JSON:

{"text": "\u1326"}  // Value: ጦ

Python:

char = '\u1326'
print(char)  # Output: ጦ

Perl:

my $char = "\x{1326}";
print $char;  # Output: ጦ

PHP:

$char = "\x{1326}";
echo $char;  // Output: ጦ

Ruby:

char = "\u{1326}"
puts char  # Output: ጦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001326";  /* Display: ጦ */
}

HTML Decimal:

<p>HTML decimal: &#4902;</p>  <!-- Display: ጦ -->

HTML Hexadecimal:

<p>HTML hex: &#x1326;</p>  <!-- Display: ጦ -->

URL Encoding:

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

Encodings

MD5:

0ee3c27b8dcf24472f0f72663e3345d9

SHA1:

b2e076951d855e019e6cf2812f05cfa7a53f6ad3

Base64:

4Yym