C:
char c = '\u2201';
printf("%c\n", c); // Output: ∁
JavaScript:
const char = '\u2201';
console.log(char); // Output: ∁
Java:
char c = '\u2201';
System.out.println(c); // Output: ∁
JSON:
{"text": "\u2201"} // Value: ∁
Python:
char = '\u2201'
print(char) # Output: ∁
Perl:
my $char = "\x{2201}";
print $char; # Output: ∁
PHP:
$char = "\x{2201}";
echo $char; // Output: ∁
Ruby:
char = "\u{2201}"
puts char # Output: ∁
Rust:
let c = '\u{2201}';
println!("{}", c); // Output: ∁
Go:
char := '\u2201'
fmt.Printf("%c\n", char) // Output: ∁
CSS:
/* CSS content property */
.element::before {
content: "\002201"; /* 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%81
MD5:
989d31d1d64dfc7c17243920e8e5585f
SHA1:
c289a5a4d960bed77df4f81516bc5e96c8bd14e6
Base64:
4oiB