Unicode Finder

"ና" U+1293(ETHIOPIC SYLLABLE NAA)

U+1293
ব্লক নাম
Ethiopic
নাম
ETHIOPIC SYLLABLE NAA

Programming

C
\u1293
JavaScript
\u1293
Java
\u1293
Json
\u1293
Python
\u1293
Perl
\x{1293}
PHP
\x{1293}
Ruby
\u{1293}
Rust
\u{1293}
Go
\u1293

Web

CSS
\001293
HtmlDecimal
ና
HtmlHexadecimal
ና
Url
%E1%8A%93

Code

MD5
169e936f35480810be6c046a78a94f3c
Sha1
ddf2b458fe83e95d4fc1e434fad85380b146a86b
Base64
4YqT

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

Programming Languages

C:

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

JavaScript:

const char = '\u1293';
console.log(char);  // Output: ና

Java:

char c = '\u1293';
System.out.println(c);  // Output: ና

JSON:

{"text": "\u1293"}  // Value: ና

Python:

char = '\u1293'
print(char)  # Output: ና

Perl:

my $char = "\x{1293}";
print $char;  # Output: ና

PHP:

$char = "\x{1293}";
echo $char;  // Output: ና

Ruby:

char = "\u{1293}"
puts char  # Output: ና

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001293";  /* Display: ና */
}

HTML Decimal:

<p>HTML decimal: &#4755;</p>  <!-- Display: ና -->

HTML Hexadecimal:

<p>HTML hex: &#x1293;</p>  <!-- Display: ና -->

URL Encoding:

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

Encodings

MD5:

169e936f35480810be6c046a78a94f3c

SHA1:

ddf2b458fe83e95d4fc1e434fad85380b146a86b

Base64:

4YqT