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