C:
char c = '\u2297';
printf("%c\n", c); // Output: ⊗
JavaScript:
const char = '\u2297';
console.log(char); // Output: ⊗
Java:
char c = '\u2297';
System.out.println(c); // Output: ⊗
JSON:
{"text": "\u2297"} // Value: ⊗
Python:
char = '\u2297'
print(char) # Output: ⊗
Perl:
my $char = "\x{2297}";
print $char; # Output: ⊗
PHP:
$char = "\x{2297}";
echo $char; // Output: ⊗
Ruby:
char = "\u{2297}"
puts char # Output: ⊗
Rust:
let c = '\u{2297}';
println!("{}", c); // Output: ⊗
Go:
char := '\u2297'
fmt.Printf("%c\n", char) // Output: ⊗
CSS:
/* CSS content property */
.element::before {
content: "\002297"; /* 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%97
MD5:
434c2ceae5d3385c4cc747b7955a1ed9
SHA1:
f120f64b748e9bc85b4e7c19592be588861aea6d
Base64:
4oqX