C:
char c = '\u0399';
printf("%c\n", c); // Output: Ι
JavaScript:
const char = '\u0399';
console.log(char); // Output: Ι
Java:
char c = '\u0399';
System.out.println(c); // Output: Ι
JSON:
{"text": "\u0399"} // Value: Ι
Python:
char = '\u0399'
print(char) # Output: Ι
Perl:
my $char = "\x{0399}";
print $char; # Output: Ι
PHP:
$char = "\x{0399}";
echo $char; // Output: Ι
Ruby:
char = "\u{0399}"
puts char # Output: Ι
Rust:
let c = '\u{399}';
println!("{}", c); // Output: Ι
Go:
char := '\u0399'
fmt.Printf("%c\n", char) // Output: Ι
CSS:
/* CSS content property */
.element::before {
content: "\000399"; /* 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%99
MD5:
505a974f21fb61af7d21759870c1120c
SHA1:
a8fd084debcdb4f20c7880c1b4770ae3fbcd30e9
Base64:
zpk=