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