C:
char c = '\u1F29';
printf("%c\n", c); // Output: Ἡ
JavaScript:
const char = '\u1F29';
console.log(char); // Output: Ἡ
Java:
char c = '\u1F29';
System.out.println(c); // Output: Ἡ
JSON:
{"text": "\u1F29"} // Value: Ἡ
Python:
char = '\u1F29'
print(char) # Output: Ἡ
Perl:
my $char = "\x{1F29}";
print $char; # Output: Ἡ
PHP:
$char = "\x{1F29}";
echo $char; // Output: Ἡ
Ruby:
char = "\u{1F29}"
puts char # Output: Ἡ
Rust:
let c = '\u{1F29}';
println!("{}", c); // Output: Ἡ
Go:
char := '\u1F29'
fmt.Printf("%c\n", char) // Output: Ἡ
CSS:
/* CSS content property */
.element::before {
content: "\001F29"; /* 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%BC%A9
MD5:
5404a98cdfe436ab4fad34f86737a4da
SHA1:
ce02eebe95906fe3be25234012bc7e572c69c987
Base64:
4byp