C:
char c = '\u2287';
printf("%c\n", c); // Output: ⊇
JavaScript:
const char = '\u2287';
console.log(char); // Output: ⊇
Java:
char c = '\u2287';
System.out.println(c); // Output: ⊇
JSON:
{"text": "\u2287"} // Value: ⊇
Python:
char = '\u2287'
print(char) # Output: ⊇
Perl:
my $char = "\x{2287}";
print $char; # Output: ⊇
PHP:
$char = "\x{2287}";
echo $char; // Output: ⊇
Ruby:
char = "\u{2287}"
puts char # Output: ⊇
Rust:
let c = '\u{2287}';
println!("{}", c); // Output: ⊇
Go:
char := '\u2287'
fmt.Printf("%c\n", char) // Output: ⊇
CSS:
/* CSS content property */
.element::before {
content: "\002287"; /* 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%8A%87
MD5:
b201ec8aee2ed3b2f00d75393230698a
SHA1:
10e325f01ce894dd4e04549433ec9c90c1e1e5e7
Base64:
4oqH