C:
char c = '\u1F67A';
printf("%c\n", c); // Output: 🙺
JavaScript:
const char = '\u1F67A';
console.log(char); // Output: 🙺
Java:
char c = '\u1F67A';
System.out.println(c); // Output: 🙺
JSON:
{"text": "\u1F67A"} // Value: 🙺
Python:
char = '\u1F67A'
print(char) # Output: 🙺
Perl:
my $char = "\x{1F67A}";
print $char; # Output: 🙺
PHP:
$char = "\x{1F67A}";
echo $char; // Output: 🙺
Ruby:
char = "\u{1F67A}"
puts char # Output: 🙺
Rust:
let c = '\u{1F67A}';
println!("{}", c); // Output: 🙺
Go:
char := '\u1F67A'
fmt.Printf("%c\n", char) // Output: 🙺
CSS:
/* CSS content property */
.element::before {
content: "\01F67A"; /* 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%99%BA
MD5:
53dd496e12786e30f21ac86df1a3bcb7
SHA1:
2afaa5685fc1ce547fa8c1c6e670d394319c48c6
Base64:
8J+Zug==