C:
char c = '\u2283';
printf("%c\n", c); // Output: ⊃
JavaScript:
const char = '\u2283';
console.log(char); // Output: ⊃
Java:
char c = '\u2283';
System.out.println(c); // Output: ⊃
JSON:
{"text": "\u2283"} // Value: ⊃
Python:
char = '\u2283'
print(char) # Output: ⊃
Perl:
my $char = "\x{2283}";
print $char; # Output: ⊃
PHP:
$char = "\x{2283}";
echo $char; // Output: ⊃
Ruby:
char = "\u{2283}"
puts char # Output: ⊃
Rust:
let c = '\u{2283}';
println!("{}", c); // Output: ⊃
Go:
char := '\u2283'
fmt.Printf("%c\n", char) // Output: ⊃
CSS:
/* CSS content property */
.element::before {
content: "\002283"; /* 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%83
MD5:
47c79240e185e467039a4197e19b0361
SHA1:
a97ec7c9842e0faabbb751470e4d732cb48d0583
Base64:
4oqD