C:
char c = '\u2752';
printf("%c\n", c); // Output: ❒
JavaScript:
const char = '\u2752';
console.log(char); // Output: ❒
Java:
char c = '\u2752';
System.out.println(c); // Output: ❒
JSON:
{"text": "\u2752"} // Value: ❒
Python:
char = '\u2752'
print(char) # Output: ❒
Perl:
my $char = "\x{2752}";
print $char; # Output: ❒
PHP:
$char = "\x{2752}";
echo $char; // Output: ❒
Ruby:
char = "\u{2752}"
puts char # Output: ❒
Rust:
let c = '\u{2752}';
println!("{}", c); // Output: ❒
Go:
char := '\u2752'
fmt.Printf("%c\n", char) // Output: ❒
CSS:
/* CSS content property */
.element::before {
content: "\002752"; /* 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%9D%92
MD5:
cbe33a16f0dce7b9a5719a30fd16f770
SHA1:
2ba280034c4eb3cda6b700008d8d6af1518ecef8
Base64:
4p2S