Unicode Finder

"ፀ" U+1340(ETHIOPIC SYLLABLE TZA)

U+1340
Nama Blok
Ethiopic
Nama
ETHIOPIC SYLLABLE TZA

Programming

C
\u1340
JavaScript
\u1340
Java
\u1340
Json
\u1340
Python
\u1340
Perl
\x{1340}
PHP
\x{1340}
Ruby
\u{1340}
Rust
\u{1340}
Go
\u1340

Web

CSS
\001340
HtmlDecimal
ፀ
HtmlHexadecimal
ፀ
Url
%E1%8D%80

Code

MD5
f8727b8ae8911798d460356918b4ed39
Sha1
b6f4cac54579777151d0934956837adf3efc4120
Base64
4Y2A

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1340';
console.log(char);  // Output: ፀ

Java:

char c = '\u1340';
System.out.println(c);  // Output: ፀ

JSON:

{"text": "\u1340"}  // Value: ፀ

Python:

char = '\u1340'
print(char)  # Output: ፀ

Perl:

my $char = "\x{1340}";
print $char;  # Output: ፀ

PHP:

$char = "\x{1340}";
echo $char;  // Output: ፀ

Ruby:

char = "\u{1340}"
puts char  # Output: ፀ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001340";  /* Display: ፀ */
}

HTML Decimal:

<p>HTML decimal: &#4928;</p>  <!-- Display: ፀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1340;</p>  <!-- Display: ፀ -->

URL Encoding:

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

Encodings

MD5:

f8727b8ae8911798d460356918b4ed39

SHA1:

b6f4cac54579777151d0934956837adf3efc4120

Base64:

4Y2A