C:
char c = '\u2762';
printf("%c\n", c); // Output: ❢
JavaScript:
const char = '\u2762';
console.log(char); // Output: ❢
Java:
char c = '\u2762';
System.out.println(c); // Output: ❢
JSON:
{"text": "\u2762"} // Value: ❢
Python:
char = '\u2762'
print(char) # Output: ❢
Perl:
my $char = "\x{2762}";
print $char; # Output: ❢
PHP:
$char = "\x{2762}";
echo $char; // Output: ❢
Ruby:
char = "\u{2762}"
puts char # Output: ❢
Rust:
let c = '\u{2762}';
println!("{}", c); // Output: ❢
Go:
char := '\u2762'
fmt.Printf("%c\n", char) // Output: ❢
CSS:
/* CSS content property */
.element::before {
content: "\002762"; /* 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%A2
MD5:
01776b742df91bb75be7d572c5e74e8c
SHA1:
bb0146f15beb99d324c6ef53a3c1f607bc3d3aca
Base64:
4p2i