Unicode Finder

"ፑ" U+1351(ETHIOPIC SYLLABLE PU)

U+1351
ब्लॉक का नाम
Ethiopic
नाम
ETHIOPIC SYLLABLE PU

Programming

C
\u1351
JavaScript
\u1351
Java
\u1351
Json
\u1351
Python
\u1351
Perl
\x{1351}
PHP
\x{1351}
Ruby
\u{1351}
Rust
\u{1351}
Go
\u1351

Web

CSS
\001351
HtmlDecimal
ፑ
HtmlHexadecimal
ፑ
Url
%E1%8D%91

Code

MD5
2bb2c1535a8e2842b8da67de5d397483
Sha1
64e48e89a8c47366bfa104ca9cec62c793cc4a61
Base64
4Y2R

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1351';
console.log(char);  // Output: ፑ

Java:

char c = '\u1351';
System.out.println(c);  // Output: ፑ

JSON:

{"text": "\u1351"}  // Value: ፑ

Python:

char = '\u1351'
print(char)  # Output: ፑ

Perl:

my $char = "\x{1351}";
print $char;  # Output: ፑ

PHP:

$char = "\x{1351}";
echo $char;  // Output: ፑ

Ruby:

char = "\u{1351}"
puts char  # Output: ፑ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001351";  /* Display: ፑ */
}

HTML Decimal:

<p>HTML decimal: &#4945;</p>  <!-- Display: ፑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1351;</p>  <!-- Display: ፑ -->

URL Encoding:

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

Encodings

MD5:

2bb2c1535a8e2842b8da67de5d397483

SHA1:

64e48e89a8c47366bfa104ca9cec62c793cc4a61

Base64:

4Y2R