Unicode Finder

"ፒ" U+1352(ETHIOPIC SYLLABLE PI)

U+1352
区块名称
Ethiopic
名称
ETHIOPIC SYLLABLE PI

Programming

C
\u1352
JavaScript
\u1352
Java
\u1352
Json
\u1352
Python
\u1352
Perl
\x{1352}
PHP
\x{1352}
Ruby
\u{1352}
Rust
\u{1352}
Go
\u1352

Web

CSS
\001352
HtmlDecimal
ፒ
HtmlHexadecimal
ፒ
Url
%E1%8D%92

Code

MD5
9d7fa5c8e2ef5852995d23ba5b498b03
Sha1
ddd93641e76917ef3ff4a5183215ac52792391f5
Base64
4Y2S

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1352';
console.log(char);  // Output: ፒ

Java:

char c = '\u1352';
System.out.println(c);  // Output: ፒ

JSON:

{"text": "\u1352"}  // Value: ፒ

Python:

char = '\u1352'
print(char)  # Output: ፒ

Perl:

my $char = "\x{1352}";
print $char;  # Output: ፒ

PHP:

$char = "\x{1352}";
echo $char;  // Output: ፒ

Ruby:

char = "\u{1352}"
puts char  # Output: ፒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001352";  /* Display: ፒ */
}

HTML Decimal:

<p>HTML decimal: &#4946;</p>  <!-- Display: ፒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1352;</p>  <!-- Display: ፒ -->

URL Encoding:

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

Encodings

MD5:

9d7fa5c8e2ef5852995d23ba5b498b03

SHA1:

ddd93641e76917ef3ff4a5183215ac52792391f5

Base64:

4Y2S