C:
char c = '\u2282';
printf("%c\n", c); // Output: ⊂
JavaScript:
const char = '\u2282';
console.log(char); // Output: ⊂
Java:
char c = '\u2282';
System.out.println(c); // Output: ⊂
JSON:
{"text": "\u2282"} // Value: ⊂
Python:
char = '\u2282'
print(char) # Output: ⊂
Perl:
my $char = "\x{2282}";
print $char; # Output: ⊂
PHP:
$char = "\x{2282}";
echo $char; // Output: ⊂
Ruby:
char = "\u{2282}"
puts char # Output: ⊂
Rust:
let c = '\u{2282}';
println!("{}", c); // Output: ⊂
Go:
char := '\u2282'
fmt.Printf("%c\n", char) // Output: ⊂
CSS:
/* CSS content property */
.element::before {
content: "\002282"; /* 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%82
MD5:
c51a88011fa20bbb93b65d2a915137b5
SHA1:
903a48209df888ad59fe610ba784ea96442c42bb
Base64:
4oqC