C:
char c = '\u1F844';
printf("%c\n", c); // Output: 🡄
JavaScript:
const char = '\u1F844';
console.log(char); // Output: 🡄
Java:
char c = '\u1F844';
System.out.println(c); // Output: 🡄
JSON:
{"text": "\u1F844"} // Value: 🡄
Python:
char = '\u1F844'
print(char) # Output: 🡄
Perl:
my $char = "\x{1F844}";
print $char; # Output: 🡄
PHP:
$char = "\x{1F844}";
echo $char; // Output: 🡄
Ruby:
char = "\u{1F844}"
puts char # Output: 🡄
Rust:
let c = '\u{1F844}';
println!("{}", c); // Output: 🡄
Go:
char := '\u1F844'
fmt.Printf("%c\n", char) // Output: 🡄
CSS:
/* CSS content property */
.element::before {
content: "\01F844"; /* 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=%F0%9F%A1%84
MD5:
fcf7a43ae23809c326ebd738595246ac
SHA1:
23c8471cd1b04e36bfff56087c02d26614b650af
Base64:
8J+hhA==