C:
char c = '\u2204';
printf("%c\n", c); // Output: ∄
JavaScript:
const char = '\u2204';
console.log(char); // Output: ∄
Java:
char c = '\u2204';
System.out.println(c); // Output: ∄
JSON:
{"text": "\u2204"} // Value: ∄
Python:
char = '\u2204'
print(char) # Output: ∄
Perl:
my $char = "\x{2204}";
print $char; # Output: ∄
PHP:
$char = "\x{2204}";
echo $char; // Output: ∄
Ruby:
char = "\u{2204}"
puts char # Output: ∄
Rust:
let c = '\u{2204}';
println!("{}", c); // Output: ∄
Go:
char := '\u2204'
fmt.Printf("%c\n", char) // Output: ∄
CSS:
/* CSS content property */
.element::before {
content: "\002204"; /* 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%84
MD5:
27bd8a7b66e301300e223f1829fac9cc
SHA1:
6752bdca0c77206d895fd1812c51141e16a9f0fa
Base64:
4oiE