C:
char c = '\u2748';
printf("%c\n", c); // Output: ❈
JavaScript:
const char = '\u2748';
console.log(char); // Output: ❈
Java:
char c = '\u2748';
System.out.println(c); // Output: ❈
JSON:
{"text": "\u2748"} // Value: ❈
Python:
char = '\u2748'
print(char) # Output: ❈
Perl:
my $char = "\x{2748}";
print $char; # Output: ❈
PHP:
$char = "\x{2748}";
echo $char; // Output: ❈
Ruby:
char = "\u{2748}"
puts char # Output: ❈
Rust:
let c = '\u{2748}';
println!("{}", c); // Output: ❈
Go:
char := '\u2748'
fmt.Printf("%c\n", char) // Output: ❈
CSS:
/* CSS content property */
.element::before {
content: "\002748"; /* 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%88
MD5:
f7b99d0c7798ff66e58556f40b90925b
SHA1:
811f11f296511741452ec907dd780a7f4624a853
Base64:
4p2I