Unicode Finder

"Ę" U+0118(LATIN CAPITAL LETTER E WITH OGONEK)

Ę
U+0118
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER E WITH OGONEK

Programming

C
\u0118
JavaScript
\u0118
Java
\u0118
Json
\u0118
Python
\u0118
Perl
\x{0118}
PHP
\x{0118}
Ruby
\u{0118}
Rust
\u{118}
Go
\u0118

Web

CSS
\000118
HtmlDecimal
Ę
HtmlHexadecimal
Ę
Url
%C4%98

Code

MD5
f35714bd04275bb76ae5e4ca4310424d
Sha1
37360dfa7752100245ae89608c5ba3ef1fc790be
Base64
xJg=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0118';
console.log(char);  // Output: Ę

Java:

char c = '\u0118';
System.out.println(c);  // Output: Ę

JSON:

{"text": "\u0118"}  // Value: Ę

Python:

char = '\u0118'
print(char)  # Output: Ę

Perl:

my $char = "\x{0118}";
print $char;  # Output: Ę

PHP:

$char = "\x{0118}";
echo $char;  // Output: Ę

Ruby:

char = "\u{0118}"
puts char  # Output: Ę

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000118";  /* Display: Ę */
}

HTML Decimal:

<p>HTML decimal: &#280;</p>  <!-- Display: Ę -->

HTML Hexadecimal:

<p>HTML hex: &#x0118;</p>  <!-- Display: Ę -->

URL Encoding:

// Ę URL encoding
https://unicodefinder.com/search.php?query=%C4%98

Encodings

MD5:

f35714bd04275bb76ae5e4ca4310424d

SHA1:

37360dfa7752100245ae89608c5ba3ef1fc790be

Base64:

xJg=