C:
char c = '\u2784';
printf("%c\n", c); // Output: ➄
JavaScript:
const char = '\u2784';
console.log(char); // Output: ➄
Java:
char c = '\u2784';
System.out.println(c); // Output: ➄
JSON:
{"text": "\u2784"} // Value: ➄
Python:
char = '\u2784'
print(char) # Output: ➄
Perl:
my $char = "\x{2784}";
print $char; # Output: ➄
PHP:
$char = "\x{2784}";
echo $char; // Output: ➄
Ruby:
char = "\u{2784}"
puts char # Output: ➄
Rust:
let c = '\u{2784}';
println!("{}", c); // Output: ➄
Go:
char := '\u2784'
fmt.Printf("%c\n", char) // Output: ➄
CSS:
/* CSS content property */
.element::before {
content: "\002784"; /* 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%9E%84
MD5:
eacecb5bd64622a78d410c964ffc1c94
SHA1:
585649d36798c716682bba9d813107acdbb3c53e
Base64:
4p6E