Unicode Finder

"ፃ" U+1343(ETHIOPIC SYLLABLE TZAA)

U+1343
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE TZAA

Programming

C
\u1343
JavaScript
\u1343
Java
\u1343
Json
\u1343
Python
\u1343
Perl
\x{1343}
PHP
\x{1343}
Ruby
\u{1343}
Rust
\u{1343}
Go
\u1343

Web

CSS
\001343
HtmlDecimal
ፃ
HtmlHexadecimal
ፃ
Url
%E1%8D%83

Code

MD5
b62776af3ff77ddff3e70fde290b2e59
Sha1
fd033ffaa632fdc06c5c82edb2f8031dd54bd86d
Base64
4Y2D

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u1343';
console.log(char);  // Output: ፃ

Java:

char c = '\u1343';
System.out.println(c);  // Output: ፃ

JSON:

{"text": "\u1343"}  // Value: ፃ

Python:

char = '\u1343'
print(char)  # Output: ፃ

Perl:

my $char = "\x{1343}";
print $char;  # Output: ፃ

PHP:

$char = "\x{1343}";
echo $char;  // Output: ፃ

Ruby:

char = "\u{1343}"
puts char  # Output: ፃ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001343";  /* Display: ፃ */
}

HTML Decimal:

<p>HTML decimal: &#4931;</p>  <!-- Display: ፃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1343;</p>  <!-- Display: ፃ -->

URL Encoding:

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

Encodings

MD5:

b62776af3ff77ddff3e70fde290b2e59

SHA1:

fd033ffaa632fdc06c5c82edb2f8031dd54bd86d

Base64:

4Y2D