C:
char c = '\u1F851';
printf("%c\n", c); // Output: 🡑
JavaScript:
const char = '\u1F851';
console.log(char); // Output: 🡑
Java:
char c = '\u1F851';
System.out.println(c); // Output: 🡑
JSON:
{"text": "\u1F851"} // Value: 🡑
Python:
char = '\u1F851'
print(char) # Output: 🡑
Perl:
my $char = "\x{1F851}";
print $char; # Output: 🡑
PHP:
$char = "\x{1F851}";
echo $char; // Output: 🡑
Ruby:
char = "\u{1F851}"
puts char # Output: 🡑
Rust:
let c = '\u{1F851}';
println!("{}", c); // Output: 🡑
Go:
char := '\u1F851'
fmt.Printf("%c\n", char) // Output: 🡑
CSS:
/* CSS content property */
.element::before {
content: "\01F851"; /* 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%91
MD5:
7a7cc37355d00ae8a8db94af1f3a6f3d
SHA1:
fe34571b0e6c11b264fdfc5f48b73fdef985d83d
Base64:
8J+hkQ==