C:
char c = '\u011C';
printf("%c\n", c); // Output: Ĝ
JavaScript:
const char = '\u011C';
console.log(char); // Output: Ĝ
Java:
char c = '\u011C';
System.out.println(c); // Output: Ĝ
JSON:
{"text": "\u011C"} // Value: Ĝ
Python:
char = '\u011C'
print(char) # Output: Ĝ
Perl:
my $char = "\x{011C}";
print $char; # Output: Ĝ
PHP:
$char = "\x{011C}";
echo $char; // Output: Ĝ
Ruby:
char = "\u{011C}"
puts char # Output: Ĝ
Rust:
let c = '\u{11C}';
println!("{}", c); // Output: Ĝ
Go:
char := '\u011C'
fmt.Printf("%c\n", char) // Output: Ĝ
CSS:
/* CSS content property */
.element::before {
content: "\00011C"; /* 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%9C
MD5:
082fc5a8671af3a13dd8e4641e4b8553
SHA1:
85e35f3bb9c8e7399e379107ed3c5df69c966421
Base64:
xJw=