Unicode Finder

"ፅ" U+1345(ETHIOPIC SYLLABLE TZE)

U+1345
Nombre del Bloque
Ethiopic
Nombre
ETHIOPIC SYLLABLE TZE

Programming

C
\u1345
JavaScript
\u1345
Java
\u1345
Json
\u1345
Python
\u1345
Perl
\x{1345}
PHP
\x{1345}
Ruby
\u{1345}
Rust
\u{1345}
Go
\u1345

Web

CSS
\001345
HtmlDecimal
ፅ
HtmlHexadecimal
ፅ
Url
%E1%8D%85

Code

MD5
498cd476888240f1dfc6bbf39e9cbf1f
Sha1
b5be8f55e95bb7378c8cf956a015a5ca509d52ef
Base64
4Y2F

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1345';
console.log(char);  // Output: ፅ

Java:

char c = '\u1345';
System.out.println(c);  // Output: ፅ

JSON:

{"text": "\u1345"}  // Value: ፅ

Python:

char = '\u1345'
print(char)  # Output: ፅ

Perl:

my $char = "\x{1345}";
print $char;  # Output: ፅ

PHP:

$char = "\x{1345}";
echo $char;  // Output: ፅ

Ruby:

char = "\u{1345}"
puts char  # Output: ፅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001345";  /* Display: ፅ */
}

HTML Decimal:

<p>HTML decimal: &#4933;</p>  <!-- Display: ፅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1345;</p>  <!-- Display: ፅ -->

URL Encoding:

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

Encodings

MD5:

498cd476888240f1dfc6bbf39e9cbf1f

SHA1:

b5be8f55e95bb7378c8cf956a015a5ca509d52ef

Base64:

4Y2F