C:
char c = '\u025B';
printf("%c\n", c); // Output: ɛ
JavaScript:
const char = '\u025B';
console.log(char); // Output: ɛ
Java:
char c = '\u025B';
System.out.println(c); // Output: ɛ
JSON:
{"text": "\u025B"} // Value: ɛ
Python:
char = '\u025B'
print(char) # Output: ɛ
Perl:
my $char = "\x{025B}";
print $char; # Output: ɛ
PHP:
$char = "\x{025B}";
echo $char; // Output: ɛ
Ruby:
char = "\u{025B}"
puts char # Output: ɛ
Rust:
let c = '\u{25B}';
println!("{}", c); // Output: ɛ
Go:
char := '\u025B'
fmt.Printf("%c\n", char) // Output: ɛ
CSS:
/* CSS content property */
.element::before {
content: "\00025B"; /* 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=%C9%9B
MD5:
7cb8685cae37d9b05a73da60211a95f8
SHA1:
b85b8ed76dc5124deda666a05b66a874c932eb3e
Base64:
yZs=