C:
char c = '\u2294';
printf("%c\n", c); // Output: ⊔
JavaScript:
const char = '\u2294';
console.log(char); // Output: ⊔
Java:
char c = '\u2294';
System.out.println(c); // Output: ⊔
JSON:
{"text": "\u2294"} // Value: ⊔
Python:
char = '\u2294'
print(char) # Output: ⊔
Perl:
my $char = "\x{2294}";
print $char; # Output: ⊔
PHP:
$char = "\x{2294}";
echo $char; // Output: ⊔
Ruby:
char = "\u{2294}"
puts char # Output: ⊔
Rust:
let c = '\u{2294}';
println!("{}", c); // Output: ⊔
Go:
char := '\u2294'
fmt.Printf("%c\n", char) // Output: ⊔
CSS:
/* CSS content property */
.element::before {
content: "\002294"; /* 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%94
MD5:
1dcffe7ba9ac2e65a5de23f39db31e9b
SHA1:
7a711d5c831864a280d6f7f7ecdc8bf0843d4370
Base64:
4oqU