C:
char c = '\u1F81A';
printf("%c\n", c); // Output: ๐
JavaScript:
const char = '\u1F81A';
console.log(char); // Output: ๐
Java:
char c = '\u1F81A';
System.out.println(c); // Output: ๐
JSON:
{"text": "\u1F81A"} // Value: ๐
Python:
char = '\u1F81A'
print(char) # Output: ๐
Perl:
my $char = "\x{1F81A}";
print $char; # Output: ๐
PHP:
$char = "\x{1F81A}";
echo $char; // Output: ๐
Ruby:
char = "\u{1F81A}"
puts char # Output: ๐
Rust:
let c = '\u{1F81A}';
println!("{}", c); // Output: ๐
Go:
char := '\u1F81A'
fmt.Printf("%c\n", char) // Output: ๐
CSS:
/* CSS content property */
.element::before {
content: "\01F81A"; /* 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%A0%9A
MD5:
cf643503cdf8d0bd42f1202d56b07a83
SHA1:
76639b3d8e040b033a6bdd1b2d76bc685e2f3abf
Base64:
8J+gmg==