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