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