Unicode Finder

"ፓ" U+1353(ETHIOPIC SYLLABLE PAA)

U+1353
Nome del Blocco
Ethiopic
Nome
ETHIOPIC SYLLABLE PAA

Programming

C
\u1353
JavaScript
\u1353
Java
\u1353
Json
\u1353
Python
\u1353
Perl
\x{1353}
PHP
\x{1353}
Ruby
\u{1353}
Rust
\u{1353}
Go
\u1353

Web

CSS
\001353
HtmlDecimal
ፓ
HtmlHexadecimal
ፓ
Url
%E1%8D%93

Code

MD5
6fe10071d963de818c6cd8e2aea3e49a
Sha1
41b38cacfd8467a5fc39d867646cefdba6ae59ab
Base64
4Y2T

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1353';
console.log(char);  // Output: ፓ

Java:

char c = '\u1353';
System.out.println(c);  // Output: ፓ

JSON:

{"text": "\u1353"}  // Value: ፓ

Python:

char = '\u1353'
print(char)  # Output: ፓ

Perl:

my $char = "\x{1353}";
print $char;  # Output: ፓ

PHP:

$char = "\x{1353}";
echo $char;  // Output: ፓ

Ruby:

char = "\u{1353}"
puts char  # Output: ፓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001353";  /* Display: ፓ */
}

HTML Decimal:

<p>HTML decimal: &#4947;</p>  <!-- Display: ፓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1353;</p>  <!-- Display: ፓ -->

URL Encoding:

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

Encodings

MD5:

6fe10071d963de818c6cd8e2aea3e49a

SHA1:

41b38cacfd8467a5fc39d867646cefdba6ae59ab

Base64:

4Y2T