C:
char c = '\u2724';
printf("%c\n", c); // Output: ✤
JavaScript:
const char = '\u2724';
console.log(char); // Output: ✤
Java:
char c = '\u2724';
System.out.println(c); // Output: ✤
JSON:
{"text": "\u2724"} // Value: ✤
Python:
char = '\u2724'
print(char) # Output: ✤
Perl:
my $char = "\x{2724}";
print $char; # Output: ✤
PHP:
$char = "\x{2724}";
echo $char; // Output: ✤
Ruby:
char = "\u{2724}"
puts char # Output: ✤
Rust:
let c = '\u{2724}';
println!("{}", c); // Output: ✤
Go:
char := '\u2724'
fmt.Printf("%c\n", char) // Output: ✤
CSS:
/* CSS content property */
.element::before {
content: "\002724"; /* 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%9C%A4
MD5:
827d34fd8de7244ce97b6ee16fdcc0e4
SHA1:
97eb9bfc747907902df196ecec569e52d5e1c3ed
Base64:
4pyk