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