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