C:
char c = '\u2291';
printf("%c\n", c); // Output: ⊑
JavaScript:
const char = '\u2291';
console.log(char); // Output: ⊑
Java:
char c = '\u2291';
System.out.println(c); // Output: ⊑
JSON:
{"text": "\u2291"} // Value: ⊑
Python:
char = '\u2291'
print(char) # Output: ⊑
Perl:
my $char = "\x{2291}";
print $char; # Output: ⊑
PHP:
$char = "\x{2291}";
echo $char; // Output: ⊑
Ruby:
char = "\u{2291}"
puts char # Output: ⊑
Rust:
let c = '\u{2291}';
println!("{}", c); // Output: ⊑
Go:
char := '\u2291'
fmt.Printf("%c\n", char) // Output: ⊑
CSS:
/* CSS content property */
.element::before {
content: "\002291"; /* 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%8A%91
MD5:
574b12dcc6948d68cfd4499cdc357337
SHA1:
e8e2d96d58515f3aa0e25db105ea3147f223a0b9
Base64:
4oqR