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