C:
char c = '\u2766';
printf("%c\n", c); // Output: ❦
JavaScript:
const char = '\u2766';
console.log(char); // Output: ❦
Java:
char c = '\u2766';
System.out.println(c); // Output: ❦
JSON:
{"text": "\u2766"} // Value: ❦
Python:
char = '\u2766'
print(char) # Output: ❦
Perl:
my $char = "\x{2766}";
print $char; # Output: ❦
PHP:
$char = "\x{2766}";
echo $char; // Output: ❦
Ruby:
char = "\u{2766}"
puts char # Output: ❦
Rust:
let c = '\u{2766}';
println!("{}", c); // Output: ❦
Go:
char := '\u2766'
fmt.Printf("%c\n", char) // Output: ❦
CSS:
/* CSS content property */
.element::before {
content: "\002766"; /* 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%A6
MD5:
a66c072cd592350c5171c060a55a2c81
SHA1:
680f0ab5c4b83ac127b6bd927aecf72623812eb1
Base64:
4p2m