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