Unicode Finder

"ኖ" U+1296(ETHIOPIC SYLLABLE NO)

U+1296
Nome del Blocco
Ethiopic
Nome
ETHIOPIC SYLLABLE NO

Programming

C
\u1296
JavaScript
\u1296
Java
\u1296
Json
\u1296
Python
\u1296
Perl
\x{1296}
PHP
\x{1296}
Ruby
\u{1296}
Rust
\u{1296}
Go
\u1296

Web

CSS
\001296
HtmlDecimal
ኖ
HtmlHexadecimal
ኖ
Url
%E1%8A%96

Code

MD5
9d0cfd9d1f58bd145956b7a85a764bdf
Sha1
f1791ce1dad7e53722ace62af8cab6c1a0dabac3
Base64
4YqW

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1296';
console.log(char);  // Output: ኖ

Java:

char c = '\u1296';
System.out.println(c);  // Output: ኖ

JSON:

{"text": "\u1296"}  // Value: ኖ

Python:

char = '\u1296'
print(char)  # Output: ኖ

Perl:

my $char = "\x{1296}";
print $char;  # Output: ኖ

PHP:

$char = "\x{1296}";
echo $char;  // Output: ኖ

Ruby:

char = "\u{1296}"
puts char  # Output: ኖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001296";  /* Display: ኖ */
}

HTML Decimal:

<p>HTML decimal: &#4758;</p>  <!-- Display: ኖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1296;</p>  <!-- Display: ኖ -->

URL Encoding:

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

Encodings

MD5:

9d0cfd9d1f58bd145956b7a85a764bdf

SHA1:

f1791ce1dad7e53722ace62af8cab6c1a0dabac3

Base64:

4YqW