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