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