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