C:
char c = '\u2704';
printf("%c\n", c); // Output: ✄
JavaScript:
const char = '\u2704';
console.log(char); // Output: ✄
Java:
char c = '\u2704';
System.out.println(c); // Output: ✄
JSON:
{"text": "\u2704"} // Value: ✄
Python:
char = '\u2704'
print(char) # Output: ✄
Perl:
my $char = "\x{2704}";
print $char; # Output: ✄
PHP:
$char = "\x{2704}";
echo $char; // Output: ✄
Ruby:
char = "\u{2704}"
puts char # Output: ✄
Rust:
let c = '\u{2704}';
println!("{}", c); // Output: ✄
Go:
char := '\u2704'
fmt.Printf("%c\n", char) // Output: ✄
CSS:
/* CSS content property */
.element::before {
content: "\002704"; /* 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%84
MD5:
748aff1a6058b96d24661161cfdb1c63
SHA1:
916f00bd964df43f507c664be0ebd2bd652b3cf8
Base64:
4pyE