C:
char c = '\u2747';
printf("%c\n", c); // Output: ❇
JavaScript:
const char = '\u2747';
console.log(char); // Output: ❇
Java:
char c = '\u2747';
System.out.println(c); // Output: ❇
JSON:
{"text": "\u2747"} // Value: ❇
Python:
char = '\u2747'
print(char) # Output: ❇
Perl:
my $char = "\x{2747}";
print $char; # Output: ❇
PHP:
$char = "\x{2747}";
echo $char; // Output: ❇
Ruby:
char = "\u{2747}"
puts char # Output: ❇
Rust:
let c = '\u{2747}';
println!("{}", c); // Output: ❇
Go:
char := '\u2747'
fmt.Printf("%c\n", char) // Output: ❇
CSS:
/* CSS content property */
.element::before {
content: "\002747"; /* 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%87
MD5:
d817cde36f48091af2a81e2b4d83da12
SHA1:
18e1606a2e76fd090ec554a765d30577b2f35ca4
Base64:
4p2H