C:
char c = '\u2208';
printf("%c\n", c); // Output: ∈
JavaScript:
const char = '\u2208';
console.log(char); // Output: ∈
Java:
char c = '\u2208';
System.out.println(c); // Output: ∈
JSON:
{"text": "\u2208"} // Value: ∈
Python:
char = '\u2208'
print(char) # Output: ∈
Perl:
my $char = "\x{2208}";
print $char; # Output: ∈
PHP:
$char = "\x{2208}";
echo $char; // Output: ∈
Ruby:
char = "\u{2208}"
puts char # Output: ∈
Rust:
let c = '\u{2208}';
println!("{}", c); // Output: ∈
Go:
char := '\u2208'
fmt.Printf("%c\n", char) // Output: ∈
CSS:
/* CSS content property */
.element::before {
content: "\002208"; /* 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=%E2%88%88
MD5:
3659f7cbbee83f93790ff7f8c7480168
SHA1:
22786abe461ed5640e012ed99b4b123910c73acd
Base64:
4oiI