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