C:
char c = '\u0396';
printf("%c\n", c); // Output: Ζ
JavaScript:
const char = '\u0396';
console.log(char); // Output: Ζ
Java:
char c = '\u0396';
System.out.println(c); // Output: Ζ
JSON:
{"text": "\u0396"} // Value: Ζ
Python:
char = '\u0396'
print(char) # Output: Ζ
Perl:
my $char = "\x{0396}";
print $char; # Output: Ζ
PHP:
$char = "\x{0396}";
echo $char; // Output: Ζ
Ruby:
char = "\u{0396}"
puts char # Output: Ζ
Rust:
let c = '\u{396}';
println!("{}", c); // Output: Ζ
Go:
char := '\u0396'
fmt.Printf("%c\n", char) // Output: Ζ
CSS:
/* CSS content property */
.element::before {
content: "\000396"; /* 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=%CE%96
MD5:
f38b3668a903c328d053b56a20f6bfd3
SHA1:
2070b1e5a54137917d1332b829c8a4f63f1c5285
Base64:
zpY=