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==