Unicode Finder

"ፉ" U+1349(ETHIOPIC SYLLABLE FU)

U+1349
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE FU

Programming

C
\u1349
JavaScript
\u1349
Java
\u1349
Json
\u1349
Python
\u1349
Perl
\x{1349}
PHP
\x{1349}
Ruby
\u{1349}
Rust
\u{1349}
Go
\u1349

Web

CSS
\001349
HtmlDecimal
ፉ
HtmlHexadecimal
ፉ
Url
%E1%8D%89

Code

MD5
f90dd84d2a5d270b0777572626aa1490
Sha1
d7d5cad6c2eb00d0b01498c9815dcd08023f7cfc
Base64
4Y2J

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u1349';
console.log(char);  // Output: ፉ

Java:

char c = '\u1349';
System.out.println(c);  // Output: ፉ

JSON:

{"text": "\u1349"}  // Value: ፉ

Python:

char = '\u1349'
print(char)  # Output: ፉ

Perl:

my $char = "\x{1349}";
print $char;  # Output: ፉ

PHP:

$char = "\x{1349}";
echo $char;  // Output: ፉ

Ruby:

char = "\u{1349}"
puts char  # Output: ፉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001349";  /* Display: ፉ */
}

HTML Decimal:

<p>HTML decimal: &#4937;</p>  <!-- Display: ፉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1349;</p>  <!-- Display: ፉ -->

URL Encoding:

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

Encodings

MD5:

f90dd84d2a5d270b0777572626aa1490

SHA1:

d7d5cad6c2eb00d0b01498c9815dcd08023f7cfc

Base64:

4Y2J