Unicode Finder

"ɲ" U+0272(LATIN SMALL LETTER N WITH LEFT HOOK)

ɲ
U+0272
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER N WITH LEFT HOOK

Programming

C
\u0272
JavaScript
\u0272
Java
\u0272
Json
\u0272
Python
\u0272
Perl
\x{0272}
PHP
\x{0272}
Ruby
\u{0272}
Rust
\u{272}
Go
\u0272

Web

CSS
\000272
HtmlDecimal
ɲ
HtmlHexadecimal
ɲ
Url
%C9%B2

Code

MD5
07d10853e5c0ed028a081206c7ef66f9
Sha1
86358cd139780191db08d1b76224815f59d8f6d3
Base64
ybI=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0272';
console.log(char);  // Output: ɲ

Java:

char c = '\u0272';
System.out.println(c);  // Output: ɲ

JSON:

{"text": "\u0272"}  // Value: ɲ

Python:

char = '\u0272'
print(char)  # Output: ɲ

Perl:

my $char = "\x{0272}";
print $char;  # Output: ɲ

PHP:

$char = "\x{0272}";
echo $char;  // Output: ɲ

Ruby:

char = "\u{0272}"
puts char  # Output: ɲ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000272";  /* Display: ɲ */
}

HTML Decimal:

<p>HTML decimal: &#626;</p>  <!-- Display: ɲ -->

HTML Hexadecimal:

<p>HTML hex: &#x0272;</p>  <!-- Display: ɲ -->

URL Encoding:

// ɲ URL encoding
https://unicodefinder.com/search.php?query=%C9%B2

Encodings

MD5:

07d10853e5c0ed028a081206c7ef66f9

SHA1:

86358cd139780191db08d1b76224815f59d8f6d3

Base64:

ybI=