C:
char c = '\u2715';
printf("%c\n", c); // Output: ✕
JavaScript:
const char = '\u2715';
console.log(char); // Output: ✕
Java:
char c = '\u2715';
System.out.println(c); // Output: ✕
JSON:
{"text": "\u2715"} // Value: ✕
Python:
char = '\u2715'
print(char) # Output: ✕
Perl:
my $char = "\x{2715}";
print $char; # Output: ✕
PHP:
$char = "\x{2715}";
echo $char; // Output: ✕
Ruby:
char = "\u{2715}"
puts char # Output: ✕
Rust:
let c = '\u{2715}';
println!("{}", c); // Output: ✕
Go:
char := '\u2715'
fmt.Printf("%c\n", char) // Output: ✕
CSS:
/* CSS content property */
.element::before {
content: "\002715"; /* 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%95
MD5:
9899bf3319fb8c6b34520d599f30281e
SHA1:
0951b9a0228aca960016ba88b41519bd1d6c7086
Base64:
4pyV