C:
char c = '\u2200';
printf("%c\n", c); // Output: ∀
JavaScript:
const char = '\u2200';
console.log(char); // Output: ∀
Java:
char c = '\u2200';
System.out.println(c); // Output: ∀
JSON:
{"text": "\u2200"} // Value: ∀
Python:
char = '\u2200'
print(char) # Output: ∀
Perl:
my $char = "\x{2200}";
print $char; # Output: ∀
PHP:
$char = "\x{2200}";
echo $char; // Output: ∀
Ruby:
char = "\u{2200}"
puts char # Output: ∀
Rust:
let c = '\u{2200}';
println!("{}", c); // Output: ∀
Go:
char := '\u2200'
fmt.Printf("%c\n", char) // Output: ∀
CSS:
/* CSS content property */
.element::before {
content: "\002200"; /* 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%80
MD5:
bc11b6a7652505f0e5f64f47458d735d
SHA1:
516ac7e0c72e508d7f1d911dfcff4fcc7f72c540
Base64:
4oiA