Unicode Finder

"ፎ" U+134E(ETHIOPIC SYLLABLE FO)

U+134E
区块名称
Ethiopic
名称
ETHIOPIC SYLLABLE FO

Programming

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

Web

CSS
\00134E
HtmlDecimal
ፎ
HtmlHexadecimal
ፎ
Url
%E1%8D%8E

Code

MD5
6a1fcb919a81cbc4a18325bd75439eca
Sha1
9ce4d6ebe6c6a6060760c32c7dfa79a2d017788c
Base64
4Y2O

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u134E';
console.log(char);  // Output: ፎ

Java:

char c = '\u134E';
System.out.println(c);  // Output: ፎ

JSON:

{"text": "\u134E"}  // Value: ፎ

Python:

char = '\u134E'
print(char)  # Output: ፎ

Perl:

my $char = "\x{134E}";
print $char;  # Output: ፎ

PHP:

$char = "\x{134E}";
echo $char;  // Output: ፎ

Ruby:

char = "\u{134E}"
puts char  # Output: ፎ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4942;</p>  <!-- Display: ፎ -->

HTML Hexadecimal:

<p>HTML hex: &#x134E;</p>  <!-- Display: ፎ -->

URL Encoding:

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

Encodings

MD5:

6a1fcb919a81cbc4a18325bd75439eca

SHA1:

9ce4d6ebe6c6a6060760c32c7dfa79a2d017788c

Base64:

4Y2O