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