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