C:
char c = '\u222A';
printf("%c\n", c); // Output: ∪
JavaScript:
const char = '\u222A';
console.log(char); // Output: ∪
Java:
char c = '\u222A';
System.out.println(c); // Output: ∪
JSON:
{"text": "\u222A"} // Value: ∪
Python:
char = '\u222A'
print(char) # Output: ∪
Perl:
my $char = "\x{222A}";
print $char; # Output: ∪
PHP:
$char = "\x{222A}";
echo $char; // Output: ∪
Ruby:
char = "\u{222A}"
puts char # Output: ∪
Rust:
let c = '\u{222A}';
println!("{}", c); // Output: ∪
Go:
char := '\u222A'
fmt.Printf("%c\n", char) // Output: ∪
CSS:
/* CSS content property */
.element::before {
content: "\00222A"; /* 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%AA
MD5:
f3cef465dc643930d97faf93729b90dc
SHA1:
5f171bafbe48ef83bb7dd8e03bac86f3bc249cad
Base64:
4oiq