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