C:
char c = '\u1E1C';
printf("%c\n", c); // Output: Ḝ
JavaScript:
const char = '\u1E1C';
console.log(char); // Output: Ḝ
Java:
char c = '\u1E1C';
System.out.println(c); // Output: Ḝ
JSON:
{"text": "\u1E1C"} // Value: Ḝ
Python:
char = '\u1E1C'
print(char) # Output: Ḝ
Perl:
my $char = "\x{1E1C}";
print $char; # Output: Ḝ
PHP:
$char = "\x{1E1C}";
echo $char; // Output: Ḝ
Ruby:
char = "\u{1E1C}"
puts char # Output: Ḝ
Rust:
let c = '\u{1E1C}';
println!("{}", c); // Output: Ḝ
Go:
char := '\u1E1C'
fmt.Printf("%c\n", char) // Output: Ḝ
CSS:
/* CSS content property */
.element::before {
content: "\001E1C"; /* 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=%E1%B8%9C
MD5:
82ba8f0caf2c6de09a8263dfb3e5a168
SHA1:
031a037916e48d058c9b5c61e63ee3dc79c0456b
Base64:
4bic