Unicode Finder

"ፆ" U+1346(ETHIOPIC SYLLABLE TZO)

U+1346
Nome do Bloco
Ethiopic
Nome
ETHIOPIC SYLLABLE TZO

Programming

C
\u1346
JavaScript
\u1346
Java
\u1346
Json
\u1346
Python
\u1346
Perl
\x{1346}
PHP
\x{1346}
Ruby
\u{1346}
Rust
\u{1346}
Go
\u1346

Web

CSS
\001346
HtmlDecimal
ፆ
HtmlHexadecimal
ፆ
Url
%E1%8D%86

Code

MD5
8b261199a7efff875e5f3a9dc4e36649
Sha1
96164c2a6da3a067ab7ebd2484e15ce66d015f49
Base64
4Y2G

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1346';
console.log(char);  // Output: ፆ

Java:

char c = '\u1346';
System.out.println(c);  // Output: ፆ

JSON:

{"text": "\u1346"}  // Value: ፆ

Python:

char = '\u1346'
print(char)  # Output: ፆ

Perl:

my $char = "\x{1346}";
print $char;  # Output: ፆ

PHP:

$char = "\x{1346}";
echo $char;  // Output: ፆ

Ruby:

char = "\u{1346}"
puts char  # Output: ፆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001346";  /* Display: ፆ */
}

HTML Decimal:

<p>HTML decimal: &#4934;</p>  <!-- Display: ፆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1346;</p>  <!-- Display: ፆ -->

URL Encoding:

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

Encodings

MD5:

8b261199a7efff875e5f3a9dc4e36649

SHA1:

96164c2a6da3a067ab7ebd2484e15ce66d015f49

Base64:

4Y2G