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