Unicode Finder

"ፁ" U+1341(ETHIOPIC SYLLABLE TZU)

U+1341
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE TZU

Programming

C
\u1341
JavaScript
\u1341
Java
\u1341
Json
\u1341
Python
\u1341
Perl
\x{1341}
PHP
\x{1341}
Ruby
\u{1341}
Rust
\u{1341}
Go
\u1341

Web

CSS
\001341
HtmlDecimal
ፁ
HtmlHexadecimal
ፁ
Url
%E1%8D%81

Code

MD5
87d82b517e958cddf04e1d45aba5b49b
Sha1
20438db381df23d5a579aa51f8cee2f06b542b5b
Base64
4Y2B

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u1341';
console.log(char);  // Output: ፁ

Java:

char c = '\u1341';
System.out.println(c);  // Output: ፁ

JSON:

{"text": "\u1341"}  // Value: ፁ

Python:

char = '\u1341'
print(char)  # Output: ፁ

Perl:

my $char = "\x{1341}";
print $char;  # Output: ፁ

PHP:

$char = "\x{1341}";
echo $char;  // Output: ፁ

Ruby:

char = "\u{1341}"
puts char  # Output: ፁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001341";  /* Display: ፁ */
}

HTML Decimal:

<p>HTML decimal: &#4929;</p>  <!-- Display: ፁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1341;</p>  <!-- Display: ፁ -->

URL Encoding:

// ፁ URL encoding
https://unicodefinder.com/search.php?query=%E1%8D%81

Encodings

MD5:

87d82b517e958cddf04e1d45aba5b49b

SHA1:

20438db381df23d5a579aa51f8cee2f06b542b5b

Base64:

4Y2B