C:
char c = '\u2717';
printf("%c\n", c); // Output: ✗
JavaScript:
const char = '\u2717';
console.log(char); // Output: ✗
Java:
char c = '\u2717';
System.out.println(c); // Output: ✗
JSON:
{"text": "\u2717"} // Value: ✗
Python:
char = '\u2717'
print(char) # Output: ✗
Perl:
my $char = "\x{2717}";
print $char; # Output: ✗
PHP:
$char = "\x{2717}";
echo $char; // Output: ✗
Ruby:
char = "\u{2717}"
puts char # Output: ✗
Rust:
let c = '\u{2717}';
println!("{}", c); // Output: ✗
Go:
char := '\u2717'
fmt.Printf("%c\n", char) // Output: ✗
CSS:
/* CSS content property */
.element::before {
content: "\002717"; /* 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%97
MD5:
df52e9ff03addfc8fa43d3c4cd534bf5
SHA1:
c5c4ba1aceeba330dd52fd15ab331e3c19b6910f
Base64:
4pyX