Unicode Finder

"ፈ" U+1348(ETHIOPIC SYLLABLE FA)

U+1348
Blokk Neve
Ethiopic
Név
ETHIOPIC SYLLABLE FA

Programming

C
\u1348
JavaScript
\u1348
Java
\u1348
Json
\u1348
Python
\u1348
Perl
\x{1348}
PHP
\x{1348}
Ruby
\u{1348}
Rust
\u{1348}
Go
\u1348

Web

CSS
\001348
HtmlDecimal
ፈ
HtmlHexadecimal
ፈ
Url
%E1%8D%88

Code

MD5
777f81527c1976c60a7cfb4088c92577
Sha1
3de4efbfab95218a045d633c5a5c06d6345462dd
Base64
4Y2I

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1348';
console.log(char);  // Output: ፈ

Java:

char c = '\u1348';
System.out.println(c);  // Output: ፈ

JSON:

{"text": "\u1348"}  // Value: ፈ

Python:

char = '\u1348'
print(char)  # Output: ፈ

Perl:

my $char = "\x{1348}";
print $char;  # Output: ፈ

PHP:

$char = "\x{1348}";
echo $char;  // Output: ፈ

Ruby:

char = "\u{1348}"
puts char  # Output: ፈ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001348";  /* Display: ፈ */
}

HTML Decimal:

<p>HTML decimal: &#4936;</p>  <!-- Display: ፈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1348;</p>  <!-- Display: ፈ -->

URL Encoding:

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

Encodings

MD5:

777f81527c1976c60a7cfb4088c92577

SHA1:

3de4efbfab95218a045d633c5a5c06d6345462dd

Base64:

4Y2I