C:
char c = '\u2749';
printf("%c\n", c); // Output: ❉
JavaScript:
const char = '\u2749';
console.log(char); // Output: ❉
Java:
char c = '\u2749';
System.out.println(c); // Output: ❉
JSON:
{"text": "\u2749"} // Value: ❉
Python:
char = '\u2749'
print(char) # Output: ❉
Perl:
my $char = "\x{2749}";
print $char; # Output: ❉
PHP:
$char = "\x{2749}";
echo $char; // Output: ❉
Ruby:
char = "\u{2749}"
puts char # Output: ❉
Rust:
let c = '\u{2749}';
println!("{}", c); // Output: ❉
Go:
char := '\u2749'
fmt.Printf("%c\n", char) // Output: ❉
CSS:
/* CSS content property */
.element::before {
content: "\002749"; /* 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%89
MD5:
eac36ef54527d684d76776ce68e2089a
SHA1:
f8f5b84b38d5bc1e25e2bb8d65088ee7cfc41acf
Base64:
4p2J