C:
char c = '\u1F78';
printf("%c\n", c); // Output: ὸ
JavaScript:
const char = '\u1F78';
console.log(char); // Output: ὸ
Java:
char c = '\u1F78';
System.out.println(c); // Output: ὸ
JSON:
{"text": "\u1F78"} // Value: ὸ
Python:
char = '\u1F78'
print(char) # Output: ὸ
Perl:
my $char = "\x{1F78}";
print $char; # Output: ὸ
PHP:
$char = "\x{1F78}";
echo $char; // Output: ὸ
Ruby:
char = "\u{1F78}"
puts char # Output: ὸ
Rust:
let c = '\u{1F78}';
println!("{}", c); // Output: ὸ
Go:
char := '\u1F78'
fmt.Printf("%c\n", char) // Output: ὸ
CSS:
/* CSS content property */
.element::before {
content: "\001F78"; /* 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%BD%B8
MD5:
3e33e0d73235afd99ad3fab394953dff
SHA1:
66ab15bc271da138ad9af3f757e283e512c08071
Base64:
4b24