C:
char c = '\u22C2';
printf("%c\n", c); // Output: ⋂
JavaScript:
const char = '\u22C2';
console.log(char); // Output: ⋂
Java:
char c = '\u22C2';
System.out.println(c); // Output: ⋂
JSON:
{"text": "\u22C2"} // Value: ⋂
Python:
char = '\u22C2'
print(char) # Output: ⋂
Perl:
my $char = "\x{22C2}";
print $char; # Output: ⋂
PHP:
$char = "\x{22C2}";
echo $char; // Output: ⋂
Ruby:
char = "\u{22C2}"
puts char # Output: ⋂
Rust:
let c = '\u{22C2}';
println!("{}", c); // Output: ⋂
Go:
char := '\u22C2'
fmt.Printf("%c\n", char) // Output: ⋂
CSS:
/* CSS content property */
.element::before {
content: "\0022C2"; /* 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%8B%82
MD5:
c804f8de4ac630ae2ec7da9b1be6195c
SHA1:
9f5fd787212823fe91b4b9c6e6872779645656ae
Base64:
4ouC