C:
char c = '\u2229';
printf("%c\n", c); // Output: ∩
JavaScript:
const char = '\u2229';
console.log(char); // Output: ∩
Java:
char c = '\u2229';
System.out.println(c); // Output: ∩
JSON:
{"text": "\u2229"} // Value: ∩
Python:
char = '\u2229'
print(char) # Output: ∩
Perl:
my $char = "\x{2229}";
print $char; # Output: ∩
PHP:
$char = "\x{2229}";
echo $char; // Output: ∩
Ruby:
char = "\u{2229}"
puts char # Output: ∩
Rust:
let c = '\u{2229}';
println!("{}", c); // Output: ∩
Go:
char := '\u2229'
fmt.Printf("%c\n", char) // Output: ∩
CSS:
/* CSS content property */
.element::before {
content: "\002229"; /* 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%A9
MD5:
b6bdfaa17ef468bffe7b656c27ea5f38
SHA1:
658b535e56116b43bbec8d5064fcd7b8e6ac979b
Base64:
4oip