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