Unicode Finder

"ȩ" U+0229(LATIN SMALL LETTER E WITH CEDILLA)

ȩ
U+0229
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER E WITH CEDILLA

Programming

C
\u0229
JavaScript
\u0229
Java
\u0229
Json
\u0229
Python
\u0229
Perl
\x{0229}
PHP
\x{0229}
Ruby
\u{0229}
Rust
\u{229}
Go
\u0229

Web

CSS
\000229
HtmlDecimal
ȩ
HtmlHexadecimal
ȩ
Url
%C8%A9

Code

MD5
61d10da488267cd31147897ced7a5c1e
Sha1
f2ff381a81fc0c96fe77279b58a34bed7a80536e
Base64
yKk=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0229';
console.log(char);  // Output: ȩ

Java:

char c = '\u0229';
System.out.println(c);  // Output: ȩ

JSON:

{"text": "\u0229"}  // Value: ȩ

Python:

char = '\u0229'
print(char)  # Output: ȩ

Perl:

my $char = "\x{0229}";
print $char;  # Output: ȩ

PHP:

$char = "\x{0229}";
echo $char;  // Output: ȩ

Ruby:

char = "\u{0229}"
puts char  # Output: ȩ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000229";  /* Display: ȩ */
}

HTML Decimal:

<p>HTML decimal: &#553;</p>  <!-- Display: ȩ -->

HTML Hexadecimal:

<p>HTML hex: &#x0229;</p>  <!-- Display: ȩ -->

URL Encoding:

// ȩ URL encoding
https://unicodefinder.com/search.php?query=%C8%A9

Encodings

MD5:

61d10da488267cd31147897ced7a5c1e

SHA1:

f2ff381a81fc0c96fe77279b58a34bed7a80536e

Base64:

yKk=