Unicode Finder

"ኑ" U+1291(ETHIOPIC SYLLABLE NU)

U+1291
ব্লক নাম
Ethiopic
নাম
ETHIOPIC SYLLABLE NU

Programming

C
\u1291
JavaScript
\u1291
Java
\u1291
Json
\u1291
Python
\u1291
Perl
\x{1291}
PHP
\x{1291}
Ruby
\u{1291}
Rust
\u{1291}
Go
\u1291

Web

CSS
\001291
HtmlDecimal
ኑ
HtmlHexadecimal
ኑ
Url
%E1%8A%91

Code

MD5
60d6899ef4e4e2b018a35f6b727bc95e
Sha1
c6a4978f47ea1501e0cc0555c935564a9bbd9a77
Base64
4YqR

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u1291';
console.log(char);  // Output: ኑ

Java:

char c = '\u1291';
System.out.println(c);  // Output: ኑ

JSON:

{"text": "\u1291"}  // Value: ኑ

Python:

char = '\u1291'
print(char)  # Output: ኑ

Perl:

my $char = "\x{1291}";
print $char;  # Output: ኑ

PHP:

$char = "\x{1291}";
echo $char;  // Output: ኑ

Ruby:

char = "\u{1291}"
puts char  # Output: ኑ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001291";  /* Display: ኑ */
}

HTML Decimal:

<p>HTML decimal: &#4753;</p>  <!-- Display: ኑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1291;</p>  <!-- Display: ኑ -->

URL Encoding:

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

Encodings

MD5:

60d6899ef4e4e2b018a35f6b727bc95e

SHA1:

c6a4978f47ea1501e0cc0555c935564a9bbd9a77

Base64:

4YqR