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