C:
char c = '\u2754';
printf("%c\n", c); // Output: ❔
JavaScript:
const char = '\u2754';
console.log(char); // Output: ❔
Java:
char c = '\u2754';
System.out.println(c); // Output: ❔
JSON:
{"text": "\u2754"} // Value: ❔
Python:
char = '\u2754'
print(char) # Output: ❔
Perl:
my $char = "\x{2754}";
print $char; # Output: ❔
PHP:
$char = "\x{2754}";
echo $char; // Output: ❔
Ruby:
char = "\u{2754}"
puts char # Output: ❔
Rust:
let c = '\u{2754}';
println!("{}", c); // Output: ❔
Go:
char := '\u2754'
fmt.Printf("%c\n", char) // Output: ❔
CSS:
/* CSS content property */
.element::before {
content: "\002754"; /* 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%94
MD5:
311ab3bf52b8fc459b2618e1686ab8e3
SHA1:
a56a7a562b109e3c2353ed55c3129f5c35a7b644
Base64:
4p2U