Unicode Finder

"ፔ" U+1354(ETHIOPIC SYLLABLE PEE)

U+1354
Nome do Bloco
Ethiopic
Nome
ETHIOPIC SYLLABLE PEE

Programming

C
\u1354
JavaScript
\u1354
Java
\u1354
Json
\u1354
Python
\u1354
Perl
\x{1354}
PHP
\x{1354}
Ruby
\u{1354}
Rust
\u{1354}
Go
\u1354

Web

CSS
\001354
HtmlDecimal
ፔ
HtmlHexadecimal
ፔ
Url
%E1%8D%94

Code

MD5
483c09abe45ad04fd56318d82fa5d23e
Sha1
4ceec2676367ddb605b124a2ccd1760be1f77440
Base64
4Y2U

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1354';
console.log(char);  // Output: ፔ

Java:

char c = '\u1354';
System.out.println(c);  // Output: ፔ

JSON:

{"text": "\u1354"}  // Value: ፔ

Python:

char = '\u1354'
print(char)  # Output: ፔ

Perl:

my $char = "\x{1354}";
print $char;  # Output: ፔ

PHP:

$char = "\x{1354}";
echo $char;  // Output: ፔ

Ruby:

char = "\u{1354}"
puts char  # Output: ፔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001354";  /* Display: ፔ */
}

HTML Decimal:

<p>HTML decimal: &#4948;</p>  <!-- Display: ፔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1354;</p>  <!-- Display: ፔ -->

URL Encoding:

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

Encodings

MD5:

483c09abe45ad04fd56318d82fa5d23e

SHA1:

4ceec2676367ddb605b124a2ccd1760be1f77440

Base64:

4Y2U