Unicode Finder

"ፍ" U+134D(ETHIOPIC SYLLABLE FE)

U+134D
Bloknaam
Ethiopic
Naam
ETHIOPIC SYLLABLE FE

Programming

C
\u134D
JavaScript
\u134D
Java
\u134D
Json
\u134D
Python
\u134D
Perl
\x{134D}
PHP
\x{134D}
Ruby
\u{134D}
Rust
\u{134D}
Go
\u134D

Web

CSS
\00134D
HtmlDecimal
ፍ
HtmlHexadecimal
ፍ
Url
%E1%8D%8D

Code

MD5
2d27d5f71080dc74f09d4bdd7783331e
Sha1
abbe36bd2658b9657ffc4c39afeeb974b3cb33f3
Base64
4Y2N

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u134D';
console.log(char);  // Output: ፍ

Java:

char c = '\u134D';
System.out.println(c);  // Output: ፍ

JSON:

{"text": "\u134D"}  // Value: ፍ

Python:

char = '\u134D'
print(char)  # Output: ፍ

Perl:

my $char = "\x{134D}";
print $char;  # Output: ፍ

PHP:

$char = "\x{134D}";
echo $char;  // Output: ፍ

Ruby:

char = "\u{134D}"
puts char  # Output: ፍ

Rust:

let c = '\u{134D}';
println!("{}", c);  // Output: ፍ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00134D";  /* Display: ፍ */
}

HTML Decimal:

<p>HTML decimal: &#4941;</p>  <!-- Display: ፍ -->

HTML Hexadecimal:

<p>HTML hex: &#x134D;</p>  <!-- Display: ፍ -->

URL Encoding:

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

Encodings

MD5:

2d27d5f71080dc74f09d4bdd7783331e

SHA1:

abbe36bd2658b9657ffc4c39afeeb974b3cb33f3

Base64:

4Y2N