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: Ę
CSS:
/* CSS content property */
.element::before {
content: "\000118"; /* Display: Ę */
}
HTML Decimal:
<p>HTML decimal: Ę</p> <!-- Display: Ę -->
HTML Hexadecimal:
<p>HTML hex: Ę</p> <!-- Display: Ę -->
URL Encoding:
// Ę URL encoding
https://unicodefinder.com/search.php?query=%C4%98
MD5:
f35714bd04275bb76ae5e4ca4310424d
SHA1:
37360dfa7752100245ae89608c5ba3ef1fc790be
Base64:
xJg=