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