C:
char c = '\u2288';
printf("%c\n", c); // Output: ⊈
JavaScript:
const char = '\u2288';
console.log(char); // Output: ⊈
Java:
char c = '\u2288';
System.out.println(c); // Output: ⊈
JSON:
{"text": "\u2288"} // Value: ⊈
Python:
char = '\u2288'
print(char) # Output: ⊈
Perl:
my $char = "\x{2288}";
print $char; # Output: ⊈
PHP:
$char = "\x{2288}";
echo $char; // Output: ⊈
Ruby:
char = "\u{2288}"
puts char # Output: ⊈
Rust:
let c = '\u{2288}';
println!("{}", c); // Output: ⊈
Go:
char := '\u2288'
fmt.Printf("%c\n", char) // Output: ⊈
CSS:
/* CSS content property */
.element::before {
content: "\002288"; /* 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%88
MD5:
0d042531d7875b393dd5605294620628
SHA1:
602203a643e5271ce0a9df50565b231bc5242e6a
Base64:
4oqI