C:
char c = '\u03CD';
printf("%c\n", c); // Output: ύ
JavaScript:
const char = '\u03CD';
console.log(char); // Output: ύ
Java:
char c = '\u03CD';
System.out.println(c); // Output: ύ
JSON:
{"text": "\u03CD"} // Value: ύ
Python:
char = '\u03CD'
print(char) # Output: ύ
Perl:
my $char = "\x{03CD}";
print $char; # Output: ύ
PHP:
$char = "\x{03CD}";
echo $char; // Output: ύ
Ruby:
char = "\u{03CD}"
puts char # Output: ύ
Rust:
let c = '\u{3CD}';
println!("{}", c); // Output: ύ
Go:
char := '\u03CD'
fmt.Printf("%c\n", char) // Output: ύ
CSS:
/* CSS content property */
.element::before {
content: "\0003CD"; /* 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=%CF%8D
MD5:
f61f0154378505ea2f25f58c66aad9b2
SHA1:
7578c5058f9822b08a029d9890878084d16096d0
Base64:
z40=