C:
char c = '\u0398';
printf("%c\n", c); // Output: Θ
JavaScript:
const char = '\u0398';
console.log(char); // Output: Θ
Java:
char c = '\u0398';
System.out.println(c); // Output: Θ
JSON:
{"text": "\u0398"} // Value: Θ
Python:
char = '\u0398'
print(char) # Output: Θ
Perl:
my $char = "\x{0398}";
print $char; # Output: Θ
PHP:
$char = "\x{0398}";
echo $char; // Output: Θ
Ruby:
char = "\u{0398}"
puts char # Output: Θ
Rust:
let c = '\u{398}';
println!("{}", c); // Output: Θ
Go:
char := '\u0398'
fmt.Printf("%c\n", char) // Output: Θ
CSS:
/* CSS content property */
.element::before {
content: "\000398"; /* 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%98
MD5:
6e339d25b4e8063149b40e48a727392c
SHA1:
d3046e3ff1a783294fc3c1df3ecd738561281196
Base64:
zpg=