C:
char c = '\u0190';
printf("%c\n", c); // Output: Ɛ
JavaScript:
const char = '\u0190';
console.log(char); // Output: Ɛ
Java:
char c = '\u0190';
System.out.println(c); // Output: Ɛ
JSON:
{"text": "\u0190"} // Value: Ɛ
Python:
char = '\u0190'
print(char) # Output: Ɛ
Perl:
my $char = "\x{0190}";
print $char; # Output: Ɛ
PHP:
$char = "\x{0190}";
echo $char; // Output: Ɛ
Ruby:
char = "\u{0190}"
puts char # Output: Ɛ
Rust:
let c = '\u{190}';
println!("{}", c); // Output: Ɛ
Go:
char := '\u0190'
fmt.Printf("%c\n", char) // Output: Ɛ
CSS:
/* CSS content property */
.element::before {
content: "\000190"; /* 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=%C6%90
MD5:
1acad8c9dbca167068dfa8cb70538216
SHA1:
511094023951312e06176e4b659d4f2535d5481a
Base64:
xpA=