C:
char c = '\u2285';
printf("%c\n", c); // Output: ⊅
JavaScript:
const char = '\u2285';
console.log(char); // Output: ⊅
Java:
char c = '\u2285';
System.out.println(c); // Output: ⊅
JSON:
{"text": "\u2285"} // Value: ⊅
Python:
char = '\u2285'
print(char) # Output: ⊅
Perl:
my $char = "\x{2285}";
print $char; # Output: ⊅
PHP:
$char = "\x{2285}";
echo $char; // Output: ⊅
Ruby:
char = "\u{2285}"
puts char # Output: ⊅
Rust:
let c = '\u{2285}';
println!("{}", c); // Output: ⊅
Go:
char := '\u2285'
fmt.Printf("%c\n", char) // Output: ⊅
CSS:
/* CSS content property */
.element::before {
content: "\002285"; /* 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%85
MD5:
e85586c270cff2c00a66e694a4b6dda9
SHA1:
5ada04ddd2fcb864e3eecd1eba92dbee1c3b1218
Base64:
4oqF