C:
char c = '\u0109';
printf("%c\n", c); // Output: ĉ
JavaScript:
const char = '\u0109';
console.log(char); // Output: ĉ
Java:
char c = '\u0109';
System.out.println(c); // Output: ĉ
JSON:
{"text": "\u0109"} // Value: ĉ
Python:
char = '\u0109'
print(char) # Output: ĉ
Perl:
my $char = "\x{0109}";
print $char; # Output: ĉ
PHP:
$char = "\x{0109}";
echo $char; // Output: ĉ
Ruby:
char = "\u{0109}"
puts char # Output: ĉ
Rust:
let c = '\u{109}';
println!("{}", c); // Output: ĉ
Go:
char := '\u0109'
fmt.Printf("%c\n", char) // Output: ĉ
CSS:
/* CSS content property */
.element::before {
content: "\000109"; /* 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%89
MD5:
c2dc12d45e88be707455a0a9fd86ee48
SHA1:
ef6a2799b938907782fd25483051b59d6ea688b3
Base64:
xIk=