C:
char c = '\u2210';
printf("%c\n", c); // Output: ∐
JavaScript:
const char = '\u2210';
console.log(char); // Output: ∐
Java:
char c = '\u2210';
System.out.println(c); // Output: ∐
JSON:
{"text": "\u2210"} // Value: ∐
Python:
char = '\u2210'
print(char) # Output: ∐
Perl:
my $char = "\x{2210}";
print $char; # Output: ∐
PHP:
$char = "\x{2210}";
echo $char; // Output: ∐
Ruby:
char = "\u{2210}"
puts char # Output: ∐
Rust:
let c = '\u{2210}';
println!("{}", c); // Output: ∐
Go:
char := '\u2210'
fmt.Printf("%c\n", char) // Output: ∐
CSS:
/* CSS content property */
.element::before {
content: "\002210"; /* 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%90
MD5:
35ed56c59a8c2afed3e94900b48221d9
SHA1:
abb793ba19e914203722d476a09f38e247965373
Base64:
4oiQ