C:
char c = '\u2721';
printf("%c\n", c); // Output: ✡
JavaScript:
const char = '\u2721';
console.log(char); // Output: ✡
Java:
char c = '\u2721';
System.out.println(c); // Output: ✡
JSON:
{"text": "\u2721"} // Value: ✡
Python:
char = '\u2721'
print(char) # Output: ✡
Perl:
my $char = "\x{2721}";
print $char; # Output: ✡
PHP:
$char = "\x{2721}";
echo $char; // Output: ✡
Ruby:
char = "\u{2721}"
puts char # Output: ✡
Rust:
let c = '\u{2721}';
println!("{}", c); // Output: ✡
Go:
char := '\u2721'
fmt.Printf("%c\n", char) // Output: ✡
CSS:
/* CSS content property */
.element::before {
content: "\002721"; /* 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%A1
MD5:
8aa37429571ccd7faefc397df2624e91
SHA1:
47c73a96ef99ea4cd3931aca4cbf6211200da32f
Base64:
4pyh