Unicode Finder

"ʐ" U+0290(LATIN SMALL LETTER Z WITH RETROFLEX HOOK)

ʐ
U+0290
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER Z WITH RETROFLEX HOOK

Programming

C
\u0290
JavaScript
\u0290
Java
\u0290
Json
\u0290
Python
\u0290
Perl
\x{0290}
PHP
\x{0290}
Ruby
\u{0290}
Rust
\u{290}
Go
\u0290

Web

CSS
\000290
HtmlDecimal
ʐ
HtmlHexadecimal
ʐ
Url
%CA%90

Code

MD5
1a430e895fad0e7dbeab78f09215a036
Sha1
dc0da2429933e0b33def135316212b229e7ec2ca
Base64
ypA=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0290';
console.log(char);  // Output: ʐ

Java:

char c = '\u0290';
System.out.println(c);  // Output: ʐ

JSON:

{"text": "\u0290"}  // Value: ʐ

Python:

char = '\u0290'
print(char)  # Output: ʐ

Perl:

my $char = "\x{0290}";
print $char;  # Output: ʐ

PHP:

$char = "\x{0290}";
echo $char;  // Output: ʐ

Ruby:

char = "\u{0290}"
puts char  # Output: ʐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000290";  /* Display: ʐ */
}

HTML Decimal:

<p>HTML decimal: &#656;</p>  <!-- Display: ʐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0290;</p>  <!-- Display: ʐ -->

URL Encoding:

// ʐ URL encoding
https://unicodefinder.com/search.php?query=%CA%90

Encodings

MD5:

1a430e895fad0e7dbeab78f09215a036

SHA1:

dc0da2429933e0b33def135316212b229e7ec2ca

Base64:

ypA=