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