C:
char c = '\u2296';
printf("%c\n", c); // Output: ⊖
JavaScript:
const char = '\u2296';
console.log(char); // Output: ⊖
Java:
char c = '\u2296';
System.out.println(c); // Output: ⊖
JSON:
{"text": "\u2296"} // Value: ⊖
Python:
char = '\u2296'
print(char) # Output: ⊖
Perl:
my $char = "\x{2296}";
print $char; # Output: ⊖
PHP:
$char = "\x{2296}";
echo $char; // Output: ⊖
Ruby:
char = "\u{2296}"
puts char # Output: ⊖
Rust:
let c = '\u{2296}';
println!("{}", c); // Output: ⊖
Go:
char := '\u2296'
fmt.Printf("%c\n", char) // Output: ⊖
CSS:
/* CSS content property */
.element::before {
content: "\002296"; /* 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%96
MD5:
6c0a012ab66db636cc62525e16c26859
SHA1:
7615878b3e86a3e119db4afdccfa13a5bcccdab4
Base64:
4oqW