C:
char c = '\u2205';
printf("%c\n", c); // Output: ∅
JavaScript:
const char = '\u2205';
console.log(char); // Output: ∅
Java:
char c = '\u2205';
System.out.println(c); // Output: ∅
JSON:
{"text": "\u2205"} // Value: ∅
Python:
char = '\u2205'
print(char) # Output: ∅
Perl:
my $char = "\x{2205}";
print $char; # Output: ∅
PHP:
$char = "\x{2205}";
echo $char; // Output: ∅
Ruby:
char = "\u{2205}"
puts char # Output: ∅
Rust:
let c = '\u{2205}';
println!("{}", c); // Output: ∅
Go:
char := '\u2205'
fmt.Printf("%c\n", char) // Output: ∅
CSS:
/* CSS content property */
.element::before {
content: "\002205"; /* 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%85
MD5:
2a6f2e950fd897f315442448ca02a488
SHA1:
1ecded529e9dbbd7387bc7f3c339a813ee1cea74
Base64:
4oiF