C:
char c = '\u2284';
printf("%c\n", c); // Output: ⊄
JavaScript:
const char = '\u2284';
console.log(char); // Output: ⊄
Java:
char c = '\u2284';
System.out.println(c); // Output: ⊄
JSON:
{"text": "\u2284"} // Value: ⊄
Python:
char = '\u2284'
print(char) # Output: ⊄
Perl:
my $char = "\x{2284}";
print $char; # Output: ⊄
PHP:
$char = "\x{2284}";
echo $char; // Output: ⊄
Ruby:
char = "\u{2284}"
puts char # Output: ⊄
Rust:
let c = '\u{2284}';
println!("{}", c); // Output: ⊄
Go:
char := '\u2284'
fmt.Printf("%c\n", char) // Output: ⊄
CSS:
/* CSS content property */
.element::before {
content: "\002284"; /* 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%84
MD5:
61b76be6c483944b67795fe1bc237f09
SHA1:
a5e2f5ed1cb7c5b7bbdcb511f68ea3d9106052f7
Base64:
4oqE