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