C:
char c = '\u2295';
printf("%c\n", c); // Output: ⊕
JavaScript:
const char = '\u2295';
console.log(char); // Output: ⊕
Java:
char c = '\u2295';
System.out.println(c); // Output: ⊕
JSON:
{"text": "\u2295"} // Value: ⊕
Python:
char = '\u2295'
print(char) # Output: ⊕
Perl:
my $char = "\x{2295}";
print $char; # Output: ⊕
PHP:
$char = "\x{2295}";
echo $char; // Output: ⊕
Ruby:
char = "\u{2295}"
puts char # Output: ⊕
Rust:
let c = '\u{2295}';
println!("{}", c); // Output: ⊕
Go:
char := '\u2295'
fmt.Printf("%c\n", char) // Output: ⊕
CSS:
/* CSS content property */
.element::before {
content: "\002295"; /* 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%95
MD5:
3eb02fff4997ea78e9c47152ebbc24c3
SHA1:
6bb8a706316146a0a6f701c6d0cb1c5d3daa1c9f
Base64:
4oqV