C:
char c = '\u2765';
printf("%c\n", c); // Output: ❥
JavaScript:
const char = '\u2765';
console.log(char); // Output: ❥
Java:
char c = '\u2765';
System.out.println(c); // Output: ❥
JSON:
{"text": "\u2765"} // Value: ❥
Python:
char = '\u2765'
print(char) # Output: ❥
Perl:
my $char = "\x{2765}";
print $char; # Output: ❥
PHP:
$char = "\x{2765}";
echo $char; // Output: ❥
Ruby:
char = "\u{2765}"
puts char # Output: ❥
Rust:
let c = '\u{2765}';
println!("{}", c); // Output: ❥
Go:
char := '\u2765'
fmt.Printf("%c\n", char) // Output: ❥
CSS:
/* CSS content property */
.element::before {
content: "\002765"; /* 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%A5
MD5:
fd7b4ac8904b664c7a58eb496242f908
SHA1:
26b04067d5e271df12b51ce69903098a298ff08b
Base64:
4p2l