Unicode Finder

"ʒ" U+0292(LATIN SMALL LETTER EZH)

ʒ
U+0292
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER EZH

Programming

C
\u0292
JavaScript
\u0292
Java
\u0292
Json
\u0292
Python
\u0292
Perl
\x{0292}
PHP
\x{0292}
Ruby
\u{0292}
Rust
\u{292}
Go
\u0292

Web

CSS
\000292
HtmlDecimal
ʒ
HtmlHexadecimal
ʒ
Url
%CA%92

Code

MD5
e6fb0c1aabd2bea88a0c433df855ca1b
Sha1
3fadbe7e8762635016797a4cbc90c129a315cba3
Base64
ypI=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0292';
console.log(char);  // Output: ʒ

Java:

char c = '\u0292';
System.out.println(c);  // Output: ʒ

JSON:

{"text": "\u0292"}  // Value: ʒ

Python:

char = '\u0292'
print(char)  # Output: ʒ

Perl:

my $char = "\x{0292}";
print $char;  # Output: ʒ

PHP:

$char = "\x{0292}";
echo $char;  // Output: ʒ

Ruby:

char = "\u{0292}"
puts char  # Output: ʒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000292";  /* Display: ʒ */
}

HTML Decimal:

<p>HTML decimal: &#658;</p>  <!-- Display: ʒ -->

HTML Hexadecimal:

<p>HTML hex: &#x0292;</p>  <!-- Display: ʒ -->

URL Encoding:

// ʒ URL encoding
https://unicodefinder.com/search.php?query=%CA%92

Encodings

MD5:

e6fb0c1aabd2bea88a0c433df855ca1b

SHA1:

3fadbe7e8762635016797a4cbc90c129a315cba3

Base64:

ypI=