C:
char c = '\u22C3';
printf("%c\n", c); // Output: ⋃
JavaScript:
const char = '\u22C3';
console.log(char); // Output: ⋃
Java:
char c = '\u22C3';
System.out.println(c); // Output: ⋃
JSON:
{"text": "\u22C3"} // Value: ⋃
Python:
char = '\u22C3'
print(char) # Output: ⋃
Perl:
my $char = "\x{22C3}";
print $char; # Output: ⋃
PHP:
$char = "\x{22C3}";
echo $char; // Output: ⋃
Ruby:
char = "\u{22C3}"
puts char # Output: ⋃
Rust:
let c = '\u{22C3}';
println!("{}", c); // Output: ⋃
Go:
char := '\u22C3'
fmt.Printf("%c\n", char) // Output: ⋃
CSS:
/* CSS content property */
.element::before {
content: "\0022C3"; /* 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%83
MD5:
0c5cc2e09685ef1555d913830dc8b933
SHA1:
8043568e95e16eb66f0e90b7365ed77e1a10f576
Base64:
4ouD