C:
char c = '\u2293';
printf("%c\n", c); // Output: ⊓
JavaScript:
const char = '\u2293';
console.log(char); // Output: ⊓
Java:
char c = '\u2293';
System.out.println(c); // Output: ⊓
JSON:
{"text": "\u2293"} // Value: ⊓
Python:
char = '\u2293'
print(char) # Output: ⊓
Perl:
my $char = "\x{2293}";
print $char; # Output: ⊓
PHP:
$char = "\x{2293}";
echo $char; // Output: ⊓
Ruby:
char = "\u{2293}"
puts char # Output: ⊓
Rust:
let c = '\u{2293}';
println!("{}", c); // Output: ⊓
Go:
char := '\u2293'
fmt.Printf("%c\n", char) // Output: ⊓
CSS:
/* CSS content property */
.element::before {
content: "\002293"; /* 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%93
MD5:
d6afc7788bb55f59b10df1f1efb43922
SHA1:
2c1d586fb04ff6500d32f9faf479ff5d8ebc4472
Base64:
4oqT