C:
char c = '\u0390';
printf("%c\n", c); // Output: ΐ
JavaScript:
const char = '\u0390';
console.log(char); // Output: ΐ
Java:
char c = '\u0390';
System.out.println(c); // Output: ΐ
JSON:
{"text": "\u0390"} // Value: ΐ
Python:
char = '\u0390'
print(char) # Output: ΐ
Perl:
my $char = "\x{0390}";
print $char; # Output: ΐ
PHP:
$char = "\x{0390}";
echo $char; // Output: ΐ
Ruby:
char = "\u{0390}"
puts char # Output: ΐ
Rust:
let c = '\u{390}';
println!("{}", c); // Output: ΐ
Go:
char := '\u0390'
fmt.Printf("%c\n", char) // Output: ΐ
CSS:
/* CSS content property */
.element::before {
content: "\000390"; /* 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%90
MD5:
ebed4227441fe570dc76f2477df38671
SHA1:
c2297501d40dec36fe288074de467b789b40985a
Base64:
zpA=