C:
char c = '\u2718';
printf("%c\n", c); // Output: ✘
JavaScript:
const char = '\u2718';
console.log(char); // Output: ✘
Java:
char c = '\u2718';
System.out.println(c); // Output: ✘
JSON:
{"text": "\u2718"} // Value: ✘
Python:
char = '\u2718'
print(char) # Output: ✘
Perl:
my $char = "\x{2718}";
print $char; # Output: ✘
PHP:
$char = "\x{2718}";
echo $char; // Output: ✘
Ruby:
char = "\u{2718}"
puts char # Output: ✘
Rust:
let c = '\u{2718}';
println!("{}", c); // Output: ✘
Go:
char := '\u2718'
fmt.Printf("%c\n", char) // Output: ✘
CSS:
/* CSS content property */
.element::before {
content: "\002718"; /* 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%9C%98
MD5:
582d433a3edb9e83b2735e894baaff62
SHA1:
5b4869fe217d384ed9bd32e63d7f3b32466cc2e5
Base64:
4pyY