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