Unicode Finder

"ፖ" U+1356(ETHIOPIC SYLLABLE PO)

U+1356
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE PO

Programming

C
\u1356
JavaScript
\u1356
Java
\u1356
Json
\u1356
Python
\u1356
Perl
\x{1356}
PHP
\x{1356}
Ruby
\u{1356}
Rust
\u{1356}
Go
\u1356

Web

CSS
\001356
HtmlDecimal
ፖ
HtmlHexadecimal
ፖ
Url
%E1%8D%96

Code

MD5
9249ddd8dbadaeb4868556b56085d2a5
Sha1
26b42dee1b45a228f2e32977f2570f6ea359582d
Base64
4Y2W

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u1356';
console.log(char);  // Output: ፖ

Java:

char c = '\u1356';
System.out.println(c);  // Output: ፖ

JSON:

{"text": "\u1356"}  // Value: ፖ

Python:

char = '\u1356'
print(char)  # Output: ፖ

Perl:

my $char = "\x{1356}";
print $char;  # Output: ፖ

PHP:

$char = "\x{1356}";
echo $char;  // Output: ፖ

Ruby:

char = "\u{1356}"
puts char  # Output: ፖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001356";  /* Display: ፖ */
}

HTML Decimal:

<p>HTML decimal: &#4950;</p>  <!-- Display: ፖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1356;</p>  <!-- Display: ፖ -->

URL Encoding:

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

Encodings

MD5:

9249ddd8dbadaeb4868556b56085d2a5

SHA1:

26b42dee1b45a228f2e32977f2570f6ea359582d

Base64:

4Y2W