Unicode Finder

"ፗ" U+1357(ETHIOPIC SYLLABLE PWA)

U+1357
Nama Blok
Ethiopic
Nama
ETHIOPIC SYLLABLE PWA

Programming

C
\u1357
JavaScript
\u1357
Java
\u1357
Json
\u1357
Python
\u1357
Perl
\x{1357}
PHP
\x{1357}
Ruby
\u{1357}
Rust
\u{1357}
Go
\u1357

Web

CSS
\001357
HtmlDecimal
ፗ
HtmlHexadecimal
ፗ
Url
%E1%8D%97

Code

MD5
16ed0064b18a08e28b630252e4a7b178
Sha1
68881e017b500103595c0c64680c1c63b82e8da9
Base64
4Y2X

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1357';
console.log(char);  // Output: ፗ

Java:

char c = '\u1357';
System.out.println(c);  // Output: ፗ

JSON:

{"text": "\u1357"}  // Value: ፗ

Python:

char = '\u1357'
print(char)  # Output: ፗ

Perl:

my $char = "\x{1357}";
print $char;  # Output: ፗ

PHP:

$char = "\x{1357}";
echo $char;  // Output: ፗ

Ruby:

char = "\u{1357}"
puts char  # Output: ፗ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001357";  /* Display: ፗ */
}

HTML Decimal:

<p>HTML decimal: &#4951;</p>  <!-- Display: ፗ -->

HTML Hexadecimal:

<p>HTML hex: &#x1357;</p>  <!-- Display: ፗ -->

URL Encoding:

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

Encodings

MD5:

16ed0064b18a08e28b630252e4a7b178

SHA1:

68881e017b500103595c0c64680c1c63b82e8da9

Base64:

4Y2X