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